Skip to content

Commit

Permalink
bump version to 5.1.0 and update release-notes.md
Browse files Browse the repository at this point in the history
  • Loading branch information
stephengold committed Aug 6, 2022
1 parent 2d0aa15 commit 121617b
Show file tree
Hide file tree
Showing 4 changed files with 22 additions and 5 deletions.
18 changes: 17 additions & 1 deletion MinieLibrary/release-notes.md
Original file line number Diff line number Diff line change
@@ -1,12 +1,28 @@
# Release log for the Minie library, DacWizard, and MinieExamples

## Version 5.1.0 released on TBD

+ Bugfix: `PhysicsRigidBody.setInverseInertiaLocal()` and
`PhysicsRigidBody.updateMassProps()` don't update the world inertia tensor
+ Bugfix: when rebuilding a rigid body, many properties are lost
+ Added a `DynamicAnimControl` mechanism to report the completion
of a blend-to-kinematic operation.
+ Added the `CompletionListener` interface.
+ Added the `RigidBodySnapshot` class.
+ Added the `setIgnoreList()` method to the `PhysicsCollisionObject` class.
+ Added a simpler constructor to `PhysicsSoftSpace`.
+ Publicized the `rebuildRigidBody()` method.
+ Updated the native libraries to v16.0.0 of Libbulletjme.
+ Built using Gradle v7.5.1 .

## Version 5.0.1 released on 2 August 2022

+ Bugfix: static rigid body misbehaves after being assigned a positive mass
+ Bugfix: `DynamicAnimComposer` with `SceneComposer` exhibits glitches during
blends to kinematic mode
+ Bugfix: when rebuilding a rigid body, its ignore list is lost
+ Based on v8.1.0 of the Heart library.
+ Built using Gradle v7.5 .

## Version 5.0.0 released on 11 July 2022

Expand All @@ -26,7 +42,7 @@
method of the `PhysicsCollisionEvent` class.

+ Library bugfixes:
+ `PhysicsCharacter.onGround()` is unreliable (stephengold/Libbuletjme#18)
+ `PhysicsCharacter.onGround()` is unreliable (stephengold/Libbulletjme#18)
+ `TorsoLink` continues writing the model transform
after a blend to kinematic completes
+ `DynamicAnimControl` rebuilds the ragdoll for minute changes to bone scaling
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.0.2-SNAPSHOT";
return "master 5.1.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.0.1
V=5.1.0
D=/home/sgold/Releases/Minie/$V
mkdir $D

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

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

sourceCompatibility = JavaVersion.VERSION_1_7
Expand Down

0 comments on commit 121617b

Please sign in to comment.