Skip to content

Commit

Permalink
bump the library version to v0.9.5 and update the release log
Browse files Browse the repository at this point in the history
  • Loading branch information
stephengold committed Jan 20, 2025
1 parent 838440b commit 63dbef8
Show file tree
Hide file tree
Showing 4 changed files with 20 additions and 3 deletions.
2 changes: 1 addition & 1 deletion android.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ plugins {

ext {
groupID = 'com.github.stephengold'
jjVersion = '0.9.5-SNAPSHOT'
jjVersion = '0.9.5'
baseName = "${artifact}-${jjVersion}" // for artifacts
websiteUrl = 'https://github.com/stephengold/jolt-jni'
}
Expand Down
2 changes: 1 addition & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ plugins {
ext {
downloadZip = 'downloads/JoltPhysics-sg250106.zip'
groupID = 'com.github.stephengold'
jjVersion = '0.9.5-SNAPSHOT'
jjVersion = '0.9.5'
baseName = "${artifact}-${jjVersion}" // for artifacts
websiteUrl = 'https://github.com/stephengold/jolt-jni'
}
Expand Down
17 changes: 17 additions & 0 deletions release-log.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,22 @@
# release log for the jolt-jni project

## Version 0.9.5 released on TBD

+ Bugfix: heap corruption in `ConvexHullShapeSettings.createSettings()`
+ Bugfix: `UnsatisfiedLinkError` in `VehicleConstraintSettings` on Windows

+ Added support for 4 Android platforms.
+ Added classes and interfaces to the libraries:
+ `RandomNumberEngine`
+ `SkeletonMapper`
+ `SkeletonMapperRef`
+ `VehicleAntiRollBar`
+ `VehicleCollisonTesterCastSphere`
+ `VehicleCollisonTesterCastSphereRef`
+ `VehicleEngine`
+ `VehicleTransmission`
+ Added many public methods to the libraries.

## Version 0.9.4 released on 6 January 2025

+ API changes:
Expand Down
2 changes: 1 addition & 1 deletion src/main/native/glue/j/Jolt.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -346,7 +346,7 @@ JNIEXPORT void JNICALL Java_com_github_stephengold_joltjni_Jolt_unregisterTypes
*/
JNIEXPORT jstring JNICALL Java_com_github_stephengold_joltjni_Jolt_versionString
(JNIEnv *pEnv, jclass) {
const jstring result = pEnv->NewStringUTF("0.9.5-SNAPSHOT");
const jstring result = pEnv->NewStringUTF("0.9.5");
return result;
}

Expand Down

0 comments on commit 63dbef8

Please sign in to comment.