Skip to content

Commit ab94fe0

Browse files
committed
bump the library version to 0.5.0 and update the release log
1 parent 7220ffe commit ab94fe0

3 files changed

Lines changed: 12 additions & 2 deletions

File tree

build.gradle

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

1414
ext {
1515
group = 'com.github.stephengold'
16-
version = '0.4.2-SNAPSHOT'
16+
version = '0.5.0'
1717
baseName = "${artifact}-${version}" // for artifacts
1818
websiteUrl = 'https://github.com/stephengold/jolt-jni'
1919
}

release-log.md

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

3+
## Version 0.5.0 released on TBD
4+
5+
+ Split off the Jolt Physics enums into a "joltjni.enumerate" package.
6+
+ Use GCC v9 when compiling for the Linux_ARM32hf platform.
7+
+ Added the `RefShape` class to the library.
8+
+ Added a no-argument constructor for `MutableCompoundShape`.
9+
+ Added 2 public methods to the library:
10+
+ `CompoundShape.getNumSubShapes()`
11+
+ `Shape.toRef()`
12+
313
## Version 0.4.1 released on 30 July 2024
414

515
+ Split off the read-only interfaces into a "joltjni.readonly" package.

src/main/native/glue/Jolt.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -192,6 +192,6 @@ JNIEXPORT void JNICALL Java_com_github_stephengold_joltjni_Jolt_unregisterTypes
192192
*/
193193
JNIEXPORT jstring JNICALL Java_com_github_stephengold_joltjni_Jolt_versionString
194194
(JNIEnv *pEnv, jclass) {
195-
jstring result = pEnv->NewStringUTF("0.4.2-SNAPSHOT");
195+
jstring result = pEnv->NewStringUTF("0.5.0");
196196
return result;
197197
}

0 commit comments

Comments
 (0)