Skip to content

Commit

Permalink
bump version to 6.0.0 and update release-notes.md
Browse files Browse the repository at this point in the history
  • Loading branch information
stephengold committed Aug 25, 2022
1 parent 9551d58 commit 5174897
Show file tree
Hide file tree
Showing 4 changed files with 19 additions and 6 deletions.
15 changes: 14 additions & 1 deletion MinieLibrary/release-notes.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,17 @@
# Release log for the Minie library, DacWizard, and MinieExamples
# Release log for the Minie library, DacWizard, MinieExamples, and VhacdTuner

## Version 6.0.0 released on TBD

+ Protected the no-arg constructors of 6 abstract classes. (API changes)
+ Bugfix: issue #30 (`NullPointerException` after removing
`DynamicAnimControl` from a `Spatial`)
+ Bugfix: I/O resources not safely closed in `VHACDParameters`.
+ Added V-HACD version 4 including the `Vhacd4`, `Vhacd4Parameters, `FillMode`,
and `Vhacd4Hull` classes plus a new `HullCollisionShape` constructor and a
new `CollisionShapeFactory` method.
+ Added the VhacdTuner sub-project.
+ Added the `toMap()` method to the `VHACDParameters` class.
+ Updated the native libraries to v16.1.0 of Libbulletjme.

## Version 5.1.0 released on 6 August 2022

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 5.1.1-SNAPSHOT";
return "master 6.0.0";
}
}
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=5.1.0
V=6.0.0
D=/home/sgold/Releases/Minie/$V
mkdir $D

Expand Down
6 changes: 3 additions & 3 deletions common.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -15,9 +15,9 @@ ext {

// current versions of libraries:
jme3Version = '3.5.2-stable'
minieVersion = '5.1.1'
minieSnapshot = '-SNAPSHOT' // for development builds
//minieSnapshot = '' // for releases
minieVersion = '6.0.0'
//minieSnapshot = '-SNAPSHOT' // for development builds
minieSnapshot = '' // for releases
}

sourceCompatibility = JavaVersion.VERSION_1_7
Expand Down

0 comments on commit 5174897

Please sign in to comment.