Skip to content

Commit

Permalink
bump the library version to 0.2.0 and add release-log.md
Browse files Browse the repository at this point in the history
  • Loading branch information
stephengold committed Jul 9, 2024
1 parent 2882327 commit 7948784
Show file tree
Hide file tree
Showing 3 changed files with 19 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
17 changes: 17 additions & 0 deletions release-log.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
# release log for the jolt-jni project

## Version 0.2.0 released on TBD

+ Added numerous classes and methods.
+ More thorough automated testing.
+ Worked around deadlocks in destructors when running on Windows.
+ Solved a `SIGTRAP` in ConvexHullShape.cpp:1191.
+ Shortened the names of 30 .cpp 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 7948784

Please sign in to comment.