From ea117c17501001bd96db05e0fc479420efb3d79e Mon Sep 17 00:00:00 2001 From: stephengold Date: Fri, 24 Jan 2025 22:43:56 -0800 Subject: [PATCH] update the release log, build scripts, and init message for v22.0.1 --- gradle.properties | 2 +- release-notes.md | 4 ++++ src/main/java/com/jme3/bullet/util/NativeLibrary.java | 2 +- src/main/native/glue/jmeClasses.h | 2 +- 4 files changed, 7 insertions(+), 3 deletions(-) diff --git a/gradle.properties b/gradle.properties index b35fb700..4508ade0 100644 --- a/gradle.properties +++ b/gradle.properties @@ -1,6 +1,6 @@ ## configure Gradle properties for building the Libbulletjme project -lbjVersion = 22.0.0 +lbjVersion = 22.0.1 ## default artifact name (used if -Partifact= isn't specified on the command line) artifact = Libbulletjme diff --git a/release-notes.md b/release-notes.md index d3cf2bf8..55f929e5 100644 --- a/release-notes.md +++ b/release-notes.md @@ -1,5 +1,9 @@ # Release log for the Libbulletjme project +## Version 22.0.1 released on 24 January 2025 + +Bugfix: desktop ARM natives are stored at wrong paths in JARs + ## Version 22.0.0 released on 22 January 2025 + Stopped deploying artifacts to GitHub. diff --git a/src/main/java/com/jme3/bullet/util/NativeLibrary.java b/src/main/java/com/jme3/bullet/util/NativeLibrary.java index 7ad2745c..a2569f5b 100644 --- a/src/main/java/com/jme3/bullet/util/NativeLibrary.java +++ b/src/main/java/com/jme3/bullet/util/NativeLibrary.java @@ -52,7 +52,7 @@ final public class NativeLibrary { /** * expected version string of the native library */ - final public static String expectedVersion = "22.0.0"; + final public static String expectedVersion = "22.0.1"; // ************************************************************************* // constructors diff --git a/src/main/native/glue/jmeClasses.h b/src/main/native/glue/jmeClasses.h index 0824129f..6fc0915d 100644 --- a/src/main/native/glue/jmeClasses.h +++ b/src/main/native/glue/jmeClasses.h @@ -38,7 +38,7 @@ */ #include -#define LIBBULLETJME_VERSION "22.0.0" +#define LIBBULLETJME_VERSION "22.0.1" #define EXCEPTION_CHK(pEnv, retval) \ if (pEnv->ExceptionCheck()) { \