Skip to content

Commit

Permalink
bump version to 0.6.5 and update release-notes.md and README.md
Browse files Browse the repository at this point in the history
  • Loading branch information
stephengold committed Feb 8, 2019
1 parent 4becf18 commit fa33ff3
Show file tree
Hide file tree
Showing 4 changed files with 25 additions and 4 deletions.
21 changes: 21 additions & 0 deletions MinieLibrary/release-notes.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,26 @@
# release notes for the Minie library and related examples

## Version 0.6.5 released on TBD

Important changes to the library:
+ Fixed various read/write bugs in `BetterCharacterControl`.
+ Cloned the rigid body in `BetterCharacterControl.cloneFields()`.
+ Standardized `BetterCharacterControl` getters to use
caller-provided storage. (API changes)
+ Renamed the `describe()`, `getAxis()`, and `parseShapeId()` methods in the
`MyShape` class. (API changes)
+ Added a `getRigidBody()` method to the `BetterCharacterControl` class.
+ Added accessors for 7 parameters (anisotropic friction, rolling friction,
spinning friction, contact damping, contact stiffness, deactivation time,
and contact processing threshold) to the `PhysicsCollisionObject` class.
These should affect only rigid bodies and vehicles.
+ Added a `parseId()` method to the `MyObject` class.
+ Implemented the `Comparable` interface for the `CollisionShape` class.
+ Added a `setLocationAndBasis()` method to the `PhysicsCollisionObject` class.
+ Added accessors for friction and restitution to the `PhysicsGhostObject`
and `PhysicsCharacter` classes. These should have no effect.
+ Updated the native libraries to version 1.0.30 of `Libbulletjme`.

## Version 0.6.4 released on 25 January 2019

Important changes to the library:
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -59,6 +59,6 @@ private MinieVersion() {
* @return branch and revision (not null, not empty)
*/
public static String versionShort() {
return "master 0.6.4+1";
return "master 0.6.5";
}
}
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -228,15 +228,15 @@ repository location:
jcenter()
}
dependencies {
compile 'jme3utilities:Minie:0.6.4'
compile 'jme3utilities:Minie:0.6.5'
}

#### For Ant projects

For project built using Ant, download the 3 non-standard
libraries from GitHub:

+ https://github.com/stephengold/Minie/releases/tag/0.6.4
+ https://github.com/stephengold/Minie/releases/tag/0.6.5
+ https://github.com/stephengold/jme3-utilities/releases/tag/heart-2.18.0
+ https://github.com/stephengold/jme3-utilities/releases/tag/debug-0.9.9

Expand Down
2 changes: 1 addition & 1 deletion common.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ gradle.projectsEvaluated {
ext {
// current versions of the libraries
jmonkeyengineVersion = '3.2.2-stable'
minieVersion = '0.6.4'
minieVersion = '0.6.5'
}

repositories {
Expand Down

0 comments on commit fa33ff3

Please sign in to comment.