File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -13,7 +13,7 @@ plugins {
1313
1414ext {
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}
Original file line number Diff line number Diff line change 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.
Original file line number Diff line number Diff line change @@ -192,6 +192,6 @@ JNIEXPORT void JNICALL Java_com_github_stephengold_joltjni_Jolt_unregisterTypes
192192 */
193193JNIEXPORT 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}
You can’t perform that action at this time.
0 commit comments