Skip to content

Commit

Permalink
bump the library version to 0.2.0 and start a release log
Browse files Browse the repository at this point in the history
  • Loading branch information
stephengold committed Jul 9, 2024
1 parent c0043c7 commit d1672bb
Show file tree
Hide file tree
Showing 3 changed files with 21 additions and 2 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.1.11-SNAPSHOT'
version = '0.2.0'
baseName = "${artifact}-${version}" // for artifacts
websiteUrl = 'https://github.com/stephengold/jolt-jni'
}
Expand Down
19 changes: 19 additions & 0 deletions release-log.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
# release log for the jolt-jni project

## Version 0.2.0 released on TBD

For development only. Not for production use.

+ Added many classes and methods.
+ Made the automated testing more systematic.
+ Worked around deadlocks in 2 destructors when running on Windows.
+ Solved a `SIGTRAP` in ConvexHullShape.cpp .
+ Shortened the names of 30 glue files.
+ Re-organized the test sourcecode into 3 new packages.
+ Modified `Shape.newShape()` to accept a zero argument.
+ Reduced the recommended number of threads when there are >9 CPUs.
+ Corrected the return type of `ConvexHullShapeSettings.createShape()` .

## Version 0.1.10 released on 3 July 2024

Initial baseline pre-release, for development only. Not for production use.
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.1.11-SNAPSHOT");
jstring result = pEnv->NewStringUTF("0.2.0");
return result;
}

0 comments on commit d1672bb

Please sign in to comment.