Skip to content

Commit 229aa5d

Browse files
committed
bump version to 0.6.3 and update release-notes.md
1 parent c65706c commit 229aa5d

3 files changed

Lines changed: 20 additions & 2 deletions

File tree

MinieLibrary/release-notes.md

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,23 @@
11
# release notes for the Minie library and related examples
22

3+
## Version 0.6.3 released on TBD
4+
5+
Important changes to the library:
6+
7+
+ Prohibited `PhysicsRigidBody.setKinematic()` on static bodies.
8+
+ Use `EmptyShape` to permit linking a bone without
9+
vertices in a `DynamicAnimControl`.
10+
+ Added `getSpatial()` methods to `GhostControl` and `RigidBodyControl`.
11+
+ Updated the native libraries to version 1.0.24 of `jme3-bullet-native`.
12+
13+
Important changes to the examples:
14+
15+
+ Added new apps: `HelloDac`, `HelloBoneLink`, `TestHullContact`.
16+
+ Added apps from the jme3-examples (sub)project: `TestSimplePhysics`,
17+
`TestRagdollCharacter`, and `TestBoneRagdoll`.
18+
+ Added example tuning for CesiumMan model. (model not provided)
19+
+ Simplified the example tuning for the Jaime model.
20+
321
## Version 0.6.2 released on 6 January 2019
422

523
+ Fixed bug where `SimpleSolidControl.onAdd()` threw a `NullPointerException`

MinieLibrary/src/main/java/jme3utilities/minie/MinieVersion.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -59,6 +59,6 @@ private MinieVersion() {
5959
* @return branch and revision (not null, not empty)
6060
*/
6161
public static String versionShort() {
62-
return "master 0.6.2+1";
62+
return "master 0.6.3";
6363
}
6464
}

common.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ gradle.projectsEvaluated {
3030
ext {
3131
// current versions of the libraries
3232
jmonkeyengineVersion = '3.2.2-stable'
33-
minieVersion = '0.6.2'
33+
minieVersion = '0.6.3'
3434
}
3535

3636
repositories {

0 commit comments

Comments
 (0)