Skip to content

Commit

Permalink
post-release fixup
Browse files Browse the repository at this point in the history
  • Loading branch information
stephengold committed Jul 9, 2024
1 parent d1672bb commit 9c1f1e5
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ plugins {

ext {
group = 'com.github.stephengold'
version = '0.2.0'
version = '0.2.1-SNAPSHOT'
baseName = "${artifact}-${version}" // for artifacts
websiteUrl = 'https://github.com/stephengold/jolt-jni'
}
Expand Down
2 changes: 1 addition & 1 deletion release-log.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# release log for the jolt-jni project

## Version 0.2.0 released on TBD
## Version 0.2.0 released on 9 July 2024

For development only. Not for production use.

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 @@ -170,6 +170,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.2.0");
jstring result = pEnv->NewStringUTF("0.2.1-SNAPSHOT");
return result;
}

0 comments on commit 9c1f1e5

Please sign in to comment.