File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -12,7 +12,7 @@ plugins {
1212
1313ext {
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}
Original file line number Diff line number Diff line change @@ -19,7 +19,7 @@ plugins {
1919ext {
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}
Original file line number Diff line number Diff line change 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:
Original file line number Diff line number Diff line change @@ -346,7 +346,7 @@ JNIEXPORT void JNICALL Java_com_github_stephengold_joltjni_Jolt_unregisterTypes
346346 */
347347JNIEXPORT 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
You can’t perform that action at this time.
0 commit comments