From 11e8b04ed0ef5d1896b5c8a3bfb80f636c563782 Mon Sep 17 00:00:00 2001 From: Stephen Gold Date: Mon, 23 Jan 2023 15:40:29 -0800 Subject: [PATCH] update release log, build scripts, and init message for v17.5.2 --- appveyor.yml | 12 ++++++------ build.gradle | 2 +- current.gradle | 2 +- release-notes.md | 2 +- .../java/com/jme3/bullet/util/NativeLibrary.java | 2 +- src/main/native/glue/jmeClasses.h | 2 +- 6 files changed, 11 insertions(+), 11 deletions(-) diff --git a/appveyor.yml b/appveyor.yml index 3cf4e42d..761c5e22 100644 --- a/appveyor.yml +++ b/appveyor.yml @@ -1,7 +1,7 @@ --- # configure deployment by AppVeyor.com -version: 17.5.1 +version: 17.5.2 image: Visual Studio 2022 @@ -11,15 +11,15 @@ build_script: - cmd: gradlew.bat build --console=plain --no-daemon artifacts: - - path: dist/Libbulletjme-17.5.1.jar + - path: dist/Libbulletjme-17.5.2.jar name: classJar - - path: dist/Libbulletjme-17.5.1-javadoc.jar + - path: dist/Libbulletjme-17.5.2-javadoc.jar name: javadocJar - - path: dist/Libbulletjme-17.5.1-sources.jar + - path: dist/Libbulletjme-17.5.2-sources.jar name: sourcesJar - - path: dist/Libbulletjme-17.5.1.pom + - path: dist/Libbulletjme-17.5.2.pom name: pom - - path: dist/Libbulletjme-17.5.1.module + - path: dist/Libbulletjme-17.5.2.module name: module - path: dist/Windows32DebugDp_bulletjme.dll name: dll32DD diff --git a/build.gradle b/build.gradle index bd983b0a..2e513109 100644 --- a/build.gradle +++ b/build.gradle @@ -11,7 +11,7 @@ plugins { ext { group = 'com.github.stephengold' artifact = 'Libbulletjme' - version = '17.5.1' + version = '17.5.2' baseName = "${artifact}-${version}" websiteUrl = 'https://github.com/stephengold/Libbulletjme' } diff --git a/current.gradle b/current.gradle index 0bbdbd2d..4a102d29 100644 --- a/current.gradle +++ b/current.gradle @@ -9,7 +9,7 @@ plugins { ext { group = 'com.github.stephengold' artifact = 'Libbulletjme' - version = '17.5.1' + version = '17.5.2' baseName = "${artifact}-${version}" websiteUrl = 'https://github.com/stephengold/Libbulletjme' } diff --git a/release-notes.md b/release-notes.md index c40c65dc..7d2e216e 100644 --- a/release-notes.md +++ b/release-notes.md @@ -1,6 +1,6 @@ # Release log for the Libbulletjme project -## Version 17.5.1 released on 23 January 2023 +## Version 17.5.2 released on 23 January 2023 + Bugfix: `PhysicsCollisionObject.findInstance()` creates a weak global reference that's never deleted. diff --git a/src/main/java/com/jme3/bullet/util/NativeLibrary.java b/src/main/java/com/jme3/bullet/util/NativeLibrary.java index 1058e8d1..bfbf116b 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 = "17.5.1"; + final public static String expectedVersion = "17.5.2"; // ************************************************************************* // constructors diff --git a/src/main/native/glue/jmeClasses.h b/src/main/native/glue/jmeClasses.h index 5e79fe85..cf67b04f 100644 --- a/src/main/native/glue/jmeClasses.h +++ b/src/main/native/glue/jmeClasses.h @@ -38,7 +38,7 @@ #include -#define LIBBULLETJME_VERSION "17.5.1" +#define LIBBULLETJME_VERSION "17.5.2" #define EXCEPTION_CHK(pEnv, retval) \ if (pEnv->ExceptionCheck()) { \