Skip to content

Commit

Permalink
bump version to 4.9.0 and update release-notes.md
Browse files Browse the repository at this point in the history
  • Loading branch information
stephengold committed May 3, 2022
1 parent 1166468 commit 81c64d2
Show file tree
Hide file tree
Showing 4 changed files with 28 additions and 4 deletions.
24 changes: 24 additions & 0 deletions MinieLibrary/release-notes.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,29 @@
# Release log for the Minie library, DacWizard, and MinieExamples

## Version 4.9.0 released on TBD

+ Elimiated the last dependency on JCenter!
+ Bugfix: `IllegalArgumentException` caused by slerps in `TorsoLink`
+ Changed `CollisionShapeFactory` to skip meshes without triangles.
+ Added the `GearJoint` class.
+ Changes to the apps:
+ Bugfix: rigid body becomes deactivated in `HelloContactReponse`
+ Bugfix: `get(Limits.TextureAnisotropy)` returns `null` on some platforms
+ Renamed `TestDebugToPost` and moved it from MinieExamples to TutorialApps.
+ Added `TestGearJoint` to MinieExamples.
+ Added 3rd body to `HelloDeactivation` for a visual reference point.
+ Added monkey-head test to `TestSoftBodyControl`.
+ Added display-settings editors to `NewtonsCradle` and `RopeDemo`.
+ Enabled window resizing for `DacWizard` and all apps in MinieExamples.
+ Based on:
+ v3.5.2-stable of JMonkeyEngine,
+ v1.5.0 of the SimMath library,
+ v7.6.0 of the Heart library,
+ v0.9.15 of the Acorus library, and
+ v0.9.29 of the jme3-utilities-nifty library.
+ Built using Gradle v7.4.2 .
+ Updated the native libraries to v14.3.0 of Libbulletjme.

## Version 4.8.1 released on 29 March 2022

+ Bugfix: issue #23 (access violations on 64-bit Windows)
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 4.8.2-SNAPSHOT";
return "master 4.9.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=4.8.1
V=4.9.0
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 @@ -14,8 +14,8 @@ ext {

// current versions of libraries:
jme3Version = '3.5.2-stable'
minieVersion = '4.8.2'
minieSnapshot = '-SNAPSHOT' // to distinguish development builds from releases
minieVersion = '4.9.0'
minieSnapshot = '' // to distinguish development builds from releases
}

sourceCompatibility = JavaVersion.VERSION_1_7
Expand Down

0 comments on commit 81c64d2

Please sign in to comment.