Skip to content

Commit

Permalink
bump version to 0.7.0 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 19, 2019
1 parent bd709aa commit 69c7620
Show file tree
Hide file tree
Showing 4 changed files with 32 additions and 9 deletions.
23 changes: 23 additions & 0 deletions MinieLibrary/release-notes.md
Original file line number Diff line number Diff line change
@@ -1,8 +1,31 @@
# release notes for the Minie library and related examples

## Version 0.7.0 released on TODO

Important changes to the library:

+ Changed the semantics of `DacConfiguration.detach()`: from unlinking
a `Bone` to detaching an attachment. (API change)
+ Removed the `unlinkAttachment()` method
from the `DacConfiguration` class. (API change)
+ Replaced `CompoundCollisionShape.getChildren()` with a new `listChildren()`
method. (API change)
+ Fixed a bug where adding a `DynamicAnimControl`
to a `Geometry` caused a crash.
+ Fixed a bug where an attached model didn't follow the rigid body when
its `AttachmentLink` was in dynamic mode.
+ Fixed a bug where `MultiSphere.read()` threw a `ClassCastException`.
+ Created a `MinieCharacterControl` class as a replacement
for JME's `CharacterControl`.
+ Added a `pinToSelf()` method to the `DynamicAnimControl` class.
+ Added a `contains()` method to the `PhysicsSpace` class.
+ Added `findIndex()` and `listChildren()` methods to the
`CompoundCollisionShape` class

## Version 0.6.5 released on 8 February 2019

Important changes to the library:

+ Fixed various read/write bugs in `BetterCharacterControl`.
+ Cloned the rigid body in `BetterCharacterControl.cloneFields()`.
+ Standardized `BetterCharacterControl` getters to use
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.5+1";
return "master 0.7.0";
}
}
14 changes: 7 additions & 7 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -239,17 +239,17 @@ repository location:
jcenter()
}
dependencies {
compile 'jme3utilities:Minie:0.6.5'
compile 'jme3utilities:Minie:0.7.0'
}

#### 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.5
+ https://github.com/stephengold/jme3-utilities/releases/tag/heart-2.19.0
+ https://github.com/stephengold/jme3-utilities/releases/tag/debug-0.9.10
+ https://github.com/stephengold/Minie/releases/tag/0.7.0
+ https://github.com/stephengold/jme3-utilities/releases/tag/heart-2.20.0
+ https://github.com/stephengold/jme3-utilities/releases/tag/debug-0.9.11

You'll want all 3 class JARs
and probably the `-sources` and `-javadoc` JARs as well.
Expand All @@ -265,15 +265,15 @@ Open the project's properties in the IDE (JME 3.2 SDK or NetBeans 8.2):
+ Navigate to the "jme3-utilities" project folder.
+ Open the "heart" sub-project folder.
+ Navigate to the "build/libs" folder.
+ Select the "jme3-utilities-heart-2.19.0.jar" file.
+ Select the "jme3-utilities-heart-2.20.0.jar" file.
+ Click on the "Open" button.
6. (optional) Add JARs for javadoc and sources:
+ Click on the "Edit" button.
+ Click on the "Browse..." button to the right of "Javadoc:"
+ Select the "jme3-utilities-heart-2.19.0-javadoc.jar" file.
+ Select the "jme3-utilities-heart-2.20.0-javadoc.jar" file.
+ Click on the "Open" button.
+ Click on the "Browse..." button to the right of "Sources:"
+ Select the "jme3-utilities-heart-2.19.0-sources.jar" file.
+ Select the "jme3-utilities-heart-2.20.0-sources.jar" file.
+ Click on the "Open" button again.
+ Click on the "OK" button to close the "Edit Jar Reference" dialog.
7. Similarly, add the `jme3-utilities-debug` JAR(s).
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.5'
minieVersion = '0.7.0'
}

repositories {
Expand Down

0 comments on commit 69c7620

Please sign in to comment.