Skip to content

Commit

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

## Version 7.8.0 released on TBD

+ Bugfix: `PhysicsCharacter` disregards ignore lists
+ Bugfix: `makeMergedMesh()` uses the `JME_PHYSICSIGNORE` tag differently from
other methods in `CollisionShapeFactory`
+ Added the `ContactManager` interface and split off the `DefaultContactManager`
class the from the `PhysicsSpace` class.
+ Optimized `PhysicsSpace` to instantiate collision events only when a
corresponding listener is registered.
+ Added a 4-argument `addContactListener()` method to the `PhysicsSpace` class.
+ Based on v8.8.0 of the Heart library, v1.1.0 of the Acorus library,
and v0.8.1 of the Wes library.
+ Built using Gradle v8.5 .
+ Updated the native libraries to v18.6.0 of Libbulletjme.

## Version 7.7.0 released on 31 August 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 name and revision string (not null, not empty)
*/
public static String versionShort() {
return "master 7.7.1-SNAPSHOT";
return "master 7.8.0";
}
}
4 changes: 2 additions & 2 deletions bash/release.sh
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,9 @@

set -e

export JAVA_HOME=/usr/lib/jvm/Temurin/jdk-17.0.6+10
export JAVA_HOME=/usr/lib/jvm/Temurin/jdk-17.0.8.1+1

V=7.7.0
V=7.8.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.7.1'
//minieSnapshot = '-SNAPSHOT' // for development builds
minieSnapshot = '' // for release builds
minieVersion = '7.8.0'
}

subprojects {
Expand Down

0 comments on commit 01bd63c

Please sign in to comment.