Skip to content

Commit fa33ff3

Browse files
committed
bump version to 0.6.5 and update release-notes.md and README.md
1 parent 4becf18 commit fa33ff3

4 files changed

Lines changed: 25 additions & 4 deletions

File tree

MinieLibrary/release-notes.md

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

3+
## Version 0.6.5 released on TBD
4+
5+
Important changes to the library:
6+
+ Fixed various read/write bugs in `BetterCharacterControl`.
7+
+ Cloned the rigid body in `BetterCharacterControl.cloneFields()`.
8+
+ Standardized `BetterCharacterControl` getters to use
9+
caller-provided storage. (API changes)
10+
+ Renamed the `describe()`, `getAxis()`, and `parseShapeId()` methods in the
11+
`MyShape` class. (API changes)
12+
+ Added a `getRigidBody()` method to the `BetterCharacterControl` class.
13+
+ Added accessors for 7 parameters (anisotropic friction, rolling friction,
14+
spinning friction, contact damping, contact stiffness, deactivation time,
15+
and contact processing threshold) to the `PhysicsCollisionObject` class.
16+
These should affect only rigid bodies and vehicles.
17+
+ Added a `parseId()` method to the `MyObject` class.
18+
+ Implemented the `Comparable` interface for the `CollisionShape` class.
19+
+ Added a `setLocationAndBasis()` method to the `PhysicsCollisionObject` class.
20+
+ Added accessors for friction and restitution to the `PhysicsGhostObject`
21+
and `PhysicsCharacter` classes. These should have no effect.
22+
+ Updated the native libraries to version 1.0.30 of `Libbulletjme`.
23+
324
## Version 0.6.4 released on 25 January 2019
425

526
Important changes to the library:

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.4+1";
62+
return "master 0.6.5";
6363
}
6464
}

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -228,15 +228,15 @@ repository location:
228228
jcenter()
229229
}
230230
dependencies {
231-
compile 'jme3utilities:Minie:0.6.4'
231+
compile 'jme3utilities:Minie:0.6.5'
232232
}
233233

234234
#### For Ant projects
235235

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

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

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.4'
33+
minieVersion = '0.6.5'
3434
}
3535

3636
repositories {

0 commit comments

Comments
 (0)