Skip to content

Commit 99b4138

Browse files
committed
bump the library version to 0.4.1 and try again
1 parent 73f2430 commit 99b4138

3 files changed

Lines changed: 4 additions & 4 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.0'
16+
version = '0.4.1'
1717
baseName = "${artifact}-${version}" // for artifacts
1818
websiteUrl = 'https://github.com/stephengold/jolt-jni'
1919
}

release-log.md

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

3-
## Version 0.4.0 released on TBD
3+
## Version 0.4.1 released on TBD
44

55
+ Split off the read-only interfaces into a "joltjni.readonly" package.
66
+ Added support for 2 Linux-on-ARM platforms.
7-
+ Began using jSnapLoader to locate native library for testing.
7+
+ Began using jSnapLoader to select native libraries for testing.
88
+ Purged JMonkeyEngine code from the project and simplified the license.
99

1010
## Version 0.3.2 released on 24 July 2024

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.0");
195+
jstring result = pEnv->NewStringUTF("0.4.1");
196196
return result;
197197
}

0 commit comments

Comments
 (0)