Skip to content

Commit 63dbef8

Browse files
committed
bump the library version to v0.9.5 and update the release log
1 parent 838440b commit 63dbef8

4 files changed

Lines changed: 20 additions & 3 deletions

File tree

android.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ plugins {
1212

1313
ext {
1414
groupID = 'com.github.stephengold'
15-
jjVersion = '0.9.5-SNAPSHOT'
15+
jjVersion = '0.9.5'
1616
baseName = "${artifact}-${jjVersion}" // for artifacts
1717
websiteUrl = 'https://github.com/stephengold/jolt-jni'
1818
}

build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ plugins {
1919
ext {
2020
downloadZip = 'downloads/JoltPhysics-sg250106.zip'
2121
groupID = 'com.github.stephengold'
22-
jjVersion = '0.9.5-SNAPSHOT'
22+
jjVersion = '0.9.5'
2323
baseName = "${artifact}-${jjVersion}" // for artifacts
2424
websiteUrl = 'https://github.com/stephengold/jolt-jni'
2525
}

release-log.md

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,22 @@
11
# release log for the jolt-jni project
22

3+
## Version 0.9.5 released on TBD
4+
5+
+ Bugfix: heap corruption in `ConvexHullShapeSettings.createSettings()`
6+
+ Bugfix: `UnsatisfiedLinkError` in `VehicleConstraintSettings` on Windows
7+
8+
+ Added support for 4 Android platforms.
9+
+ Added classes and interfaces to the libraries:
10+
+ `RandomNumberEngine`
11+
+ `SkeletonMapper`
12+
+ `SkeletonMapperRef`
13+
+ `VehicleAntiRollBar`
14+
+ `VehicleCollisonTesterCastSphere`
15+
+ `VehicleCollisonTesterCastSphereRef`
16+
+ `VehicleEngine`
17+
+ `VehicleTransmission`
18+
+ Added many public methods to the libraries.
19+
320
## Version 0.9.4 released on 6 January 2025
421

522
+ API changes:

src/main/native/glue/j/Jolt.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -346,7 +346,7 @@ JNIEXPORT void JNICALL Java_com_github_stephengold_joltjni_Jolt_unregisterTypes
346346
*/
347347
JNIEXPORT jstring JNICALL Java_com_github_stephengold_joltjni_Jolt_versionString
348348
(JNIEnv *pEnv, jclass) {
349-
const jstring result = pEnv->NewStringUTF("0.9.5-SNAPSHOT");
349+
const jstring result = pEnv->NewStringUTF("0.9.5");
350350
return result;
351351
}
352352

0 commit comments

Comments
 (0)