Skip to content

Commit

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

## Version 7.6.0 released on TBD

+ Bugfix: the gravity of a rigid body isn't read/written/cloned
+ Bugfix: ignore lists are never cloned for non-joined collision objects
+ Bugfix: `IllegalStateException` in `DropTest` while creating a ragdoll
+ Allow zero-mass kinematic rigid bodies.
+ Added the an "addLinksForTris" parameter to `SoftBodyControl`.
+ Based on v8.6.0 of the Heart library.
+ Built using Gradle v8.1.1 .
+ Updated the native libraries to v18.3.0 of Libbulletjme.

## Version 7.5.0 released on 13 April 2023

+ Bugfix: during cloning, Bullet's ignore list
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.5.1-SNAPSHOT";
return "master 7.6.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.6+10

V=7.5.0
V=7.6.0
D=/home/sgold/Releases/Minie/$V
mkdir $D

Expand Down
6 changes: 3 additions & 3 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -26,9 +26,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 release builds
minieVersion = '7.5.1'
//minieSnapshot = '-SNAPSHOT' // for development builds
minieSnapshot = '' // for release builds
minieVersion = '7.6.0'
}

subprojects {
Expand Down

0 comments on commit 4670de2

Please sign in to comment.