File tree Expand file tree Collapse file tree 4 files changed +8
-6
lines changed
Expand file tree Collapse file tree 4 files changed +8
-6
lines changed Original file line number Diff line number Diff line change 11
2+ ### November 2, 2022 version 1.5.8
3+ * Add ` static long Pointer.getDirectBufferAddress(Buffer) ` method for convenience ([ pull #629 ] ( https://github.com/bytedeco/javacpp/pull/629 ) )
24 * Fix ` UniquePtrAdapter ` incorrectly deallocating pointers on callbacks ([ issue #613 ] ( https://github.com/bytedeco/javacpp/issues/613 ) )
35 * Fix ` Generator ` incorrectly casting ` @ByVal ` or ` @ByRef ` annotated ` FunctionPointer ` arguments ([ issue bytedeco/javacpp-presets #1244 ] ( https://github.com/bytedeco/javacpp-presets/issues/1244 ) )
46 * Fix ` Generator ` compiler errors for ` FunctionPointer ` with ` @UniquePtr ` arguments ([ issue #613 ] ( https://github.com/bytedeco/javacpp/issues/613 ) )
Original file line number Diff line number Diff 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.7 </version >
29+ <version >1.5.8 </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.7 '
36+ implementation group: 'org.bytedeco', name: 'javacpp', version: '1.5.8 '
3737 }
3838```
3939
4040 * Leiningen (inside the ` project.clj ` file)
4141``` clojure
4242 :dependencies [
43- [org.bytedeco/javacpp " 1.5.7 " ]
43+ [org.bytedeco/javacpp " 1.5.8 " ]
4444 ]
4545```
4646
4747 * sbt (inside the ` build.sbt ` file)
4848``` scala
49- libraryDependencies += " org.bytedeco" % " javacpp" % " 1.5.7 "
49+ libraryDependencies += " org.bytedeco" % " javacpp" % " 1.5.8 "
5050```
5151
5252Another 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 ) .
Original file line number Diff line number Diff line change 44 <modelVersion >4.0.0</modelVersion >
55 <groupId >org.bytedeco</groupId >
66 <artifactId >javacpp-platform</artifactId >
7- <version >1.5.8-SNAPSHOT </version >
7+ <version >1.5.8</version >
88
99 <name >JavaCPP Platform</name >
1010 <description >The missing bridge between Java and native C++</description >
Original file line number Diff line number Diff line change 44 <modelVersion >4.0.0</modelVersion >
55 <groupId >org.bytedeco</groupId >
66 <artifactId >javacpp</artifactId >
7- <version >1.5.8-SNAPSHOT </version >
7+ <version >1.5.8</version >
88
99 <name >JavaCPP</name >
1010 <description >The missing bridge between Java and native C++</description >
You can’t perform that action at this time.
0 commit comments