Skip to content

Commit ea117c1

Browse files
committed
update the release log, build scripts, and init message for v22.0.1
1 parent c4620d6 commit ea117c1

File tree

4 files changed

+7
-3
lines changed

4 files changed

+7
-3
lines changed

gradle.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
## configure Gradle properties for building the Libbulletjme project
22

3-
lbjVersion = 22.0.0
3+
lbjVersion = 22.0.1
44

55
## default artifact name (used if -Partifact= isn't specified on the command line)
66
artifact = Libbulletjme

release-notes.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,9 @@
11
# Release log for the Libbulletjme project
22

3+
## Version 22.0.1 released on 24 January 2025
4+
5+
Bugfix: desktop ARM natives are stored at wrong paths in JARs
6+
37
## Version 22.0.0 released on 22 January 2025
48

59
+ Stopped deploying artifacts to GitHub.

src/main/java/com/jme3/bullet/util/NativeLibrary.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@ final public class NativeLibrary {
5252
/**
5353
* expected version string of the native library
5454
*/
55-
final public static String expectedVersion = "22.0.0";
55+
final public static String expectedVersion = "22.0.1";
5656
// *************************************************************************
5757
// constructors
5858

src/main/native/glue/jmeClasses.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@
3838
*/
3939
#include <jni.h>
4040

41-
#define LIBBULLETJME_VERSION "22.0.0"
41+
#define LIBBULLETJME_VERSION "22.0.1"
4242

4343
#define EXCEPTION_CHK(pEnv, retval) \
4444
if (pEnv->ExceptionCheck()) { \

0 commit comments

Comments
 (0)