Skip to content

Commit

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

## Version 0.3.1 released on TBD

+ Bugfix: memory leak in `MassProperties`
+ Added many methods.
+ Added classes and interfaces to the library:
+ `BroadPhaseLayerInterface`
+ `ConstBodyCreationSettings`
+ `ConstBroadPhaseLayerInterface`
+ `ConstMassProperties`
+ `ConstObjectLayerPairFilter`
+ `ConstObjectVsBroadPhaseLayerFilter`
+ `EAllowedDofs`
+ `EOverrideMassProperties`
+ `Mat44`
+ `Mat44Arg`
+ `ObjectLayerPairFilter`
+ `ObjectVsBroadPhaseLayerFilter`
+ `UVec4`
+ `UVec4Arg`

## Version 0.3.0 released on 16 July 2024

+ Added a `java.lang.ref.Cleaner` to automatically free native
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.3.1-SNAPSHOT");
jstring result = pEnv->NewStringUTF("0.3.1");
return result;
}

0 comments on commit e691a58

Please sign in to comment.