Skip to content

Commit 2559658

Browse files
committed
Release version 1.5.10
1 parent e9b82ce commit 2559658

File tree

5 files changed

+8
-6
lines changed

5 files changed

+8
-6
lines changed

CHANGELOG.md

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

2+
### January 29, 2024 version 1.5.10
23
* Move native `Loader` methods to `Helper` class to avoid deadlocks ([issue #737](https://github.com/bytedeco/javacpp/issues/737))
34
* Fix `Parser` failing to pick up `Info` for constructors with template arguments ([pull #739](https://github.com/bytedeco/javacpp/pull/739))
45
* Fix `MoveAdapter` and `UniquePtrAdapter` causing double free on function calls ([pull #738](https://github.com/bytedeco/javacpp/pull/738))

README.md

Lines changed: 4 additions & 4 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.9</version>
29+
<version>1.5.10</version>
3030
</dependency>
3131
```
3232

3333
* Gradle (inside the `build.gradle` file)
3434
```groovy
3535
dependencies {
36-
implementation group: 'org.bytedeco', name: 'javacpp', version: '1.5.9'
36+
implementation group: 'org.bytedeco', name: 'javacpp', version: '1.5.10'
3737
}
3838
```
3939

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

4747
* sbt (inside the `build.sbt` file)
4848
```scala
49-
libraryDependencies += "org.bytedeco" % "javacpp" % "1.5.9"
49+
libraryDependencies += "org.bytedeco" % "javacpp" % "1.5.10"
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).

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.10-SNAPSHOT</version>
7+
<version>1.5.10</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.10-SNAPSHOT</version>
7+
<version>1.5.10</version>
88

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

src/main/java/org/bytedeco/javacpp/tools/Generator.java

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -154,6 +154,7 @@ static enum IntEnum { INT; int value; }
154154
static enum LongEnum { LONG; long value; }
155155
static final String JNI_VERSION = "JNI_VERSION_1_6";
156156
static final List<Class> baseClasses = Arrays.asList(new Class[] {
157+
Loader.class,
157158
Loader.Helper.class,
158159
Pointer.class,
159160
//FunctionPointer.class,

0 commit comments

Comments
 (0)