Skip to content

Commit

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

## Version 7.5.0 released on TBD

+ Bugfix: during cloning, Bullet's ignore list
gets out-of-synch with the JVM list
+ Added the `applyAllExceptIgnoreListTo()` method
to the `RigidBodySnapshot` class.
+ Made private fields `static` in the tutorial apps.
+ Built using Gradle v8.1.0 .

## Version 7.4.0 released on 24 March 2023

+ Fixed bugs:
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.4.1-SNAPSHOT";
return "master 7.5.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.4.0
V=7.5.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.4.1'
//minieSnapshot = '-SNAPSHOT' // for development builds
minieSnapshot = '' // for release builds
minieVersion = '7.5.0'
}

subprojects {
Expand Down

0 comments on commit b1f8ef6

Please sign in to comment.