Skip to content

Commit

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

## Version 7.0.2 released on TBD

+ Bugfix: `NullPointerException` in `rebuildRigidBody()` while de-serializing
an old model
+ Bugfix: DacWizard doesn't write rotation orders to Java source code

## Version 7.0.1 released on 1 January 2023

Bugfix: `NullPointerException` in `PhysicsCollisionObject.readPcoProperties()`
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.0.2-SNAPSHOT";
return "master 7.0.2";
}
}
2 changes: 1 addition & 1 deletion bash/release.sh
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

set -e

V=7.0.1
V=7.0.2
D=/home/sgold/Releases/Minie/$V
mkdir $D

Expand Down
4 changes: 2 additions & 2 deletions common.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -25,8 +25,8 @@ 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
//minieSnapshot = '-SNAPSHOT' // for development builds
minieSnapshot = '' // for releases
minieVersion = '7.0.2'
}

Expand Down

0 comments on commit b072eb3

Please sign in to comment.