diff --git a/CHANGELOG.md b/CHANGELOG.md index c820085a..04576d03 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,4 +1,5 @@ +### June 6, 2023 version 1.5.9 * Fix `Loader.extractResource()` for nested JAR files from Spring Boot ([pull #685](https://github.com/bytedeco/javacpp/pull/685)) * Have `Parser` desugar `...` varargs to array `[]` for return types as well ([pull #682](https://github.com/bytedeco/javacpp/pull/682)) * Fix `Parser` failing on some `friend` functions for `operator` overloading ([pull #681](https://github.com/bytedeco/javacpp/pull/681)) diff --git a/README.md b/README.md index 89f3c26d..02be9222 100644 --- a/README.md +++ b/README.md @@ -26,27 +26,27 @@ We can also have everything downloaded and installed automatically with: org.bytedeco javacpp - 1.5.8 + 1.5.9 ``` * Gradle (inside the `build.gradle` file) ```groovy dependencies { - implementation group: 'org.bytedeco', name: 'javacpp', version: '1.5.8' + implementation group: 'org.bytedeco', name: 'javacpp', version: '1.5.9' } ``` * Leiningen (inside the `project.clj` file) ```clojure :dependencies [ - [org.bytedeco/javacpp "1.5.8"] + [org.bytedeco/javacpp "1.5.9"] ] ``` * sbt (inside the `build.sbt` file) ```scala - libraryDependencies += "org.bytedeco" % "javacpp" % "1.5.8" + libraryDependencies += "org.bytedeco" % "javacpp" % "1.5.9" ``` 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). diff --git a/platform/pom.xml b/platform/pom.xml index 04962e0c..9c714db3 100644 --- a/platform/pom.xml +++ b/platform/pom.xml @@ -4,7 +4,7 @@ 4.0.0 org.bytedeco javacpp-platform - 1.5.9-SNAPSHOT + 1.5.9 JavaCPP Platform The missing bridge between Java and native C++ diff --git a/pom.xml b/pom.xml index f9163ab0..5bcd21ec 100644 --- a/pom.xml +++ b/pom.xml @@ -4,7 +4,7 @@ 4.0.0 org.bytedeco javacpp - 1.5.9-SNAPSHOT + 1.5.9 JavaCPP The missing bridge between Java and native C++