diff --git a/build.gradle b/build.gradle index d6e88165..05ef45f9 100644 --- a/build.gradle +++ b/build.gradle @@ -13,7 +13,7 @@ plugins { ext { group = 'com.github.stephengold' - version = '0.4.0' + version = '0.4.1' baseName = "${artifact}-${version}" // for artifacts websiteUrl = 'https://github.com/stephengold/jolt-jni' } diff --git a/release-log.md b/release-log.md index 5ec23db6..e6fd2038 100644 --- a/release-log.md +++ b/release-log.md @@ -1,10 +1,10 @@ # release log for the jolt-jni project -## Version 0.4.0 released on TBD +## Version 0.4.1 released on TBD + Split off the read-only interfaces into a "joltjni.readonly" package. + Added support for 2 Linux-on-ARM platforms. -+ Began using jSnapLoader to locate native library for testing. ++ Began using jSnapLoader to select native libraries for testing. + Purged JMonkeyEngine code from the project and simplified the license. ## Version 0.3.2 released on 24 July 2024 diff --git a/src/main/native/glue/Jolt.cpp b/src/main/native/glue/Jolt.cpp index 29290b85..fdd04876 100644 --- a/src/main/native/glue/Jolt.cpp +++ b/src/main/native/glue/Jolt.cpp @@ -192,6 +192,6 @@ JNIEXPORT void JNICALL Java_com_github_stephengold_joltjni_Jolt_unregisterTypes */ JNIEXPORT jstring JNICALL Java_com_github_stephengold_joltjni_Jolt_versionString (JNIEnv *pEnv, jclass) { - jstring result = pEnv->NewStringUTF("0.4.0"); + jstring result = pEnv->NewStringUTF("0.4.1"); return result; }