Skip to content

Commit

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

## Version 7.8.1 released on TBD

+ Bugfix: BVH algorithm fails
+ Updated the native libraries to v18.6.1 of Libbulletjme.

## Version 7.8.0 released on 2 December 2023

+ Bugfix: `PhysicsCharacter` disregards ignore lists
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -59,6 +59,6 @@ private MinieVersion() {
* @return the branch name and revision string (not null, not empty)
*/
public static String versionShort() {
return "master 7.8.1-SNAPSHOT";
return "master 7.8.1";
}
}
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.8.1+1

V=7.8.0
V=7.8.1
D=/home/sgold/Releases/Minie/$V
mkdir $D

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

Expand Down

0 comments on commit d30e5f4

Please sign in to comment.