From 28b468b5d79e4e40b8842846087f803aa7869163 Mon Sep 17 00:00:00 2001 From: Samuel Audet Date: Fri, 30 Jul 2021 23:49:08 +0900 Subject: [PATCH] Release version 1.5.6 --- CHANGELOG.md | 1 + README.md | 8 ++++---- platform/pom.xml | 2 +- pom.xml | 2 +- 4 files changed, 7 insertions(+), 6 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 19d68e0c..a87acfa4 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,4 +1,5 @@ +### August 2, 2021 version 1.5.6 * Add missing export to `module-info.java` file for presets package ([pull #508](https://github.com/bytedeco/javacpp/pull/508)) * Add `@NoException(true)` value to support overriding `virtual noexcept` functions * Bundle more DLLs from UCRT to fix the systems presets on Windows diff --git a/README.md b/README.md index 658cb1c1..c82c623e 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.5 + 1.5.6 ``` * Gradle (inside the `build.gradle` file) ```groovy dependencies { - implementation group: 'org.bytedeco', name: 'javacpp', version: '1.5.5' + implementation group: 'org.bytedeco', name: 'javacpp', version: '1.5.6' } ``` * Leiningen (inside the `project.clj` file) ```clojure :dependencies [ - [org.bytedeco/javacpp "1.5.5"] + [org.bytedeco/javacpp "1.5.6"] ] ``` * sbt (inside the `build.sbt` file) ```scala - libraryDependencies += "org.bytedeco" % "javacpp" % "1.5.5" + libraryDependencies += "org.bytedeco" % "javacpp" % "1.5.6" ``` 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 59a92f77..0a831183 100644 --- a/platform/pom.xml +++ b/platform/pom.xml @@ -4,7 +4,7 @@ 4.0.0 org.bytedeco javacpp-platform - 1.5.6-SNAPSHOT + 1.5.6 JavaCPP Platform The missing bridge between Java and native C++ diff --git a/pom.xml b/pom.xml index dc10ea33..a09b33d1 100644 --- a/pom.xml +++ b/pom.xml @@ -4,7 +4,7 @@ 4.0.0 org.bytedeco javacpp - 1.5.6-SNAPSHOT + 1.5.6 JavaCPP The missing bridge between Java and native C++