Skip to content

Commit

Permalink
update the release log, build scripts, and init message for v22.0.1
Browse files Browse the repository at this point in the history
  • Loading branch information
stephengold committed Jan 25, 2025
1 parent c4620d6 commit ea117c1
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 3 deletions.
2 changes: 1 addition & 1 deletion gradle.properties
Original file line number Diff line number Diff line change
@@ -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
Expand Down
4 changes: 4 additions & 0 deletions release-notes.md
Original file line number Diff line number Diff line change
@@ -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.
Expand Down
2 changes: 1 addition & 1 deletion src/main/java/com/jme3/bullet/util/NativeLibrary.java
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down
2 changes: 1 addition & 1 deletion src/main/native/glue/jmeClasses.h
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@
*/
#include <jni.h>

#define LIBBULLETJME_VERSION "22.0.0"
#define LIBBULLETJME_VERSION "22.0.1"

#define EXCEPTION_CHK(pEnv, retval) \
if (pEnv->ExceptionCheck()) { \
Expand Down

0 comments on commit ea117c1

Please sign in to comment.