Skip to content

Commit

Permalink
bump version to 7.2.0 and update release-notes.md
Browse files Browse the repository at this point in the history
  • Loading branch information
stephengold committed Jan 24, 2023
1 parent a835b94 commit 4f07de4
Show file tree
Hide file tree
Showing 4 changed files with 18 additions and 5 deletions.
13 changes: 13 additions & 0 deletions MinieLibrary/release-notes.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,18 @@
# Release log for the Minie library, DacWizard, MinieExamples, and VhacdTuner

## Version 7.2.0 released on TBD

+ Bugfix: `PhysicsCollisionObject.findInstance()`
creates a weak global reference that's never deleted
+ Bugfix: `DynamicAnimControl.totalMass()` returns `NaN` even when
the control is added to a `Spatial`
+ Bugfix: weak global references in `PhysicsCollisionObject` and `MultiBody`
are never deleted
+ Added 2 new methods:
+ `CollisionSpace.jniEnvId()`
+ `NativeLibrary.jniEnvId()`
+ Updated the native libraries to v17.5.4 of Libbulletjme.

## Version 7.1.0 released on 16 January 2023

+ Added the capability to generate cylinder shapes in a ragdoll.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -59,6 +59,6 @@ private MinieVersion() {
* @return the branch and revision string (not null, not empty)
*/
public static String versionShort() {
return "master 7.1.1-SNAPSHOT";
return "master 7.2.0";
}
}
2 changes: 1 addition & 1 deletion bash/release.sh
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ set -e

export JAVA_HOME=/usr/lib/jvm/Temurin/jdk-17.0.4+8

V=7.1.0
V=7.2.0
D=/home/sgold/Releases/Minie/$V
mkdir $D

Expand Down
6 changes: 3 additions & 3 deletions common.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -25,9 +25,9 @@ ext {
//lwjglCoordinates = 'org.jmonkeyengine:jme3-lwjgl:' + jme3Version // for LWJGL 2.x
lwjglCoordinates = 'org.jmonkeyengine:jme3-lwjgl3:' + jme3Version // for LWJGL 3.x

minieSnapshot = '-SNAPSHOT' // for development builds
//minieSnapshot = '' // for releases
minieVersion = '7.1.1'
//minieSnapshot = '-SNAPSHOT' // for development builds
minieSnapshot = '' // for release builds
minieVersion = '7.2.0'
}

sourceCompatibility = JavaVersion.VERSION_1_7
Expand Down

0 comments on commit 4f07de4

Please sign in to comment.