Skip to content

Commit

Permalink
bump the library version to 0.4.1 and try again
Browse files Browse the repository at this point in the history
  • Loading branch information
stephengold committed Jul 30, 2024
1 parent 73f2430 commit 99b4138
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -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'
}
Expand Down
4 changes: 2 additions & 2 deletions release-log.md
Original file line number Diff line number Diff line change
@@ -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
Expand Down
2 changes: 1 addition & 1 deletion src/main/native/glue/Jolt.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -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;
}

0 comments on commit 99b4138

Please sign in to comment.