Skip to content

Commit 6dcfa53

Browse files
committed
Release version 1.5.13
1 parent ec58bf7 commit 6dcfa53

File tree

5 files changed

+15
-12
lines changed

5 files changed

+15
-12
lines changed

.github/workflows/javacpp.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -61,6 +61,8 @@ jobs:
6161
- uses: bytedeco/javacpp-presets/.github/actions/deploy-ubuntu@actions
6262
macosx-arm64:
6363
runs-on: macos-15
64+
env:
65+
CI_DEPLOY_OPTIONS: "" # to not skip tests
6466
steps:
6567
- uses: bytedeco/javacpp-presets/.github/actions/deploy-macosx@actions
6668
macosx-x86_64:

CHANGELOG.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11

2+
### February 22, 2026 version 1.5.13
23
* Add support for `freebsd-x86_64` with `freebsd-x86_64.properties` ([pull #824](https://github.com/bytedeco/javacpp/pull/824))
34
* Use `-mno-outline-atomics` in `linux-arm64.properties` to work around linker bug ([issue bytedeco/javacpp-presets#1671](https://github.com/bytedeco/javacpp-presets/issues/1671))
45
* Add `NativeAllocationTracer` to track allocations and deallocations of `Pointer` ([pull #816](https://github.com/bytedeco/javacpp/pull/816))

README.md

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -26,27 +26,27 @@ We can also have everything downloaded and installed automatically with:
2626
<dependency>
2727
<groupId>org.bytedeco</groupId>
2828
<artifactId>javacpp</artifactId>
29-
<version>1.5.12</version>
29+
<version>1.5.13</version>
3030
</dependency>
3131
```
3232

3333
* Gradle (inside the `build.gradle.kts` or `build.gradle` file)
3434
```groovy
3535
dependencies {
36-
implementation("org.bytedeco:javacpp:1.5.12")
36+
implementation("org.bytedeco:javacpp:1.5.13")
3737
}
3838
```
3939

4040
* Leiningen (inside the `project.clj` file)
4141
```clojure
4242
:dependencies [
43-
[org.bytedeco/javacpp "1.5.12"]
43+
[org.bytedeco/javacpp "1.5.13"]
4444
]
4545
```
4646

4747
* sbt (inside the `build.sbt` file)
4848
```scala
49-
libraryDependencies += "org.bytedeco" % "javacpp" % "1.5.12"
49+
libraryDependencies += "org.bytedeco" % "javacpp" % "1.5.13"
5050
```
5151

5252
Another option available to Gradle users is [Gradle JavaCPP](https://github.com/bytedeco/gradle-javacpp), and similarly for Scala users there is [SBT-JavaCPP](https://github.com/bytedeco/sbt-javacpp).
@@ -56,20 +56,21 @@ Required Software
5656
-----------------
5757
To use JavaCPP, you will need to download and install the following software:
5858

59-
* An implementation of Java SE 7 or newer:
59+
* An implementation of Java SE 8 or newer:
6060
* OpenJDK http://openjdk.java.net/install/ or
6161
* Oracle JDK http://www.oracle.com/technetwork/java/javase/downloads/ or
62-
* IBM JDK http://www.ibm.com/developerworks/java/jdk/
63-
* A C++ compiler, out of which these have been tested:
62+
* IBM JDK http://www.ibm.com/developerworks/java/jdk/ or
63+
* Microsoft JDK https://www.microsoft.com/openjdk etc
64+
* A C++11 compiler, out of which these have been tested:
6465
* GNU C/C++ Compiler (Linux, etc.) http://gcc.gnu.org/
6566
* For Windows x86 and x64 http://mingw-w64.org/
6667
* LLVM Clang (Mac OS X, etc.) http://clang.llvm.org/
6768
* Microsoft C/C++ Compiler, part of Visual Studio https://visualstudio.microsoft.com/
6869
* https://docs.microsoft.com/en-us/cpp/build/walkthrough-compiling-a-native-cpp-program-on-the-command-line
6970

70-
To produce binary files for Android 4.0 or newer, you will also have to install:
71+
To produce binary files for Android 7.0 or newer, you will also have to install:
7172

72-
* Android NDK r7 or newer http://developer.android.com/ndk/downloads/
73+
* Android NDK r18 or newer http://developer.android.com/ndk/downloads/
7374

7475
And similarly to target iOS, you will need to install either:
7576

@@ -83,7 +84,6 @@ To modify the source code, please note that the project files were created for:
8384
Finally, because we are dealing with native code, bugs can easily crash the virtual machine. Luckily, the HotSpot VM provides some tools to help us debug under those circumstances:
8485

8586
* Troubleshooting Guide for Java SE with HotSpot VM
86-
* http://docs.oracle.com/javase/7/docs/webnotes/tsg/TSG-VM/html/
8787
* http://docs.oracle.com/javase/8/docs/technotes/guides/troubleshoot/
8888

8989

platform/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
<modelVersion>4.0.0</modelVersion>
55
<groupId>org.bytedeco</groupId>
66
<artifactId>javacpp-platform</artifactId>
7-
<version>1.5.13-SNAPSHOT</version>
7+
<version>1.5.13</version>
88

99
<name>JavaCPP Platform</name>
1010
<description>The missing bridge between Java and native C++</description>

pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
<modelVersion>4.0.0</modelVersion>
55
<groupId>org.bytedeco</groupId>
66
<artifactId>javacpp</artifactId>
7-
<version>1.5.13-SNAPSHOT</version>
7+
<version>1.5.13</version>
88

99
<name>JavaCPP</name>
1010
<description>The missing bridge between Java and native C++</description>

0 commit comments

Comments
 (0)