Skip to content

Commit

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

## Version 7.7.0 released on TBD

+ Fixed bugs:
+ `NullPointerException` after rebuilding a `DynamicAnimControl`
+ unhelpful warnings while cloning a `PhysicsRigidBody`
+ `SplitDemo` app crashes caused by attempting to rotate heightfields

+ Added to the library:
+ the `MinkowskiSum` collision shape
+ the `ClassFilter` class, for filtering physics objects
+ Specified a more precise return type for `Convex2dShape.getBaseShape()`
+ `DynamicAnimControl` now logs a warning if armature scaling exceeds 1%.

+ Improvements to the `DacWizard` application:
+ Re-scale the 3-D model for each pose.
+ Added a "rebuild" action to test mode, bound to `KEY_F3`.
+ Improvements to the `MinieDump` application:
+ Added command-line options to specify an asset root.
+ Added help/usage hints.
+ Improvements to the `MinieExamples` application:
+ Added more shapes to `DropTest` and `SplitDemo`.
+ Reduced the risk of fallthru in `DropTest`, by disabling contact filtering.

+ Based on v3.6.1-stable of JMonkeyEngine and v8.7.0 of the Heart library.
+ Built using Gradle v8.3 .
+ Updated the native libraries to v18.5.2 of Libbulletjme.

## Version 7.6.0 released on 3 June 2023

+ Bugfix: the gravity of a rigid body isn't read/written/cloned
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.6.1-SNAPSHOT";
return "master 7.7.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.6.0
V=7.7.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.6.1'
//minieSnapshot = '-SNAPSHOT' // for development builds
minieSnapshot = '' // for release builds
minieVersion = '7.7.0'
}

subprojects {
Expand Down

0 comments on commit ce5d531

Please sign in to comment.