Skip to content

Commit 69c7620

Browse files
committed
bump version to 0.7.0 and update release-notes.md and README.md
1 parent bd709aa commit 69c7620

4 files changed

Lines changed: 32 additions & 9 deletions

File tree

MinieLibrary/release-notes.md

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

3+
## Version 0.7.0 released on TODO
4+
5+
Important changes to the library:
6+
7+
+ Changed the semantics of `DacConfiguration.detach()`: from unlinking
8+
a `Bone` to detaching an attachment. (API change)
9+
+ Removed the `unlinkAttachment()` method
10+
from the `DacConfiguration` class. (API change)
11+
+ Replaced `CompoundCollisionShape.getChildren()` with a new `listChildren()`
12+
method. (API change)
13+
+ Fixed a bug where adding a `DynamicAnimControl`
14+
to a `Geometry` caused a crash.
15+
+ Fixed a bug where an attached model didn't follow the rigid body when
16+
its `AttachmentLink` was in dynamic mode.
17+
+ Fixed a bug where `MultiSphere.read()` threw a `ClassCastException`.
18+
+ Created a `MinieCharacterControl` class as a replacement
19+
for JME's `CharacterControl`.
20+
+ Added a `pinToSelf()` method to the `DynamicAnimControl` class.
21+
+ Added a `contains()` method to the `PhysicsSpace` class.
22+
+ Added `findIndex()` and `listChildren()` methods to the
23+
`CompoundCollisionShape` class
24+
325
## Version 0.6.5 released on 8 February 2019
426

527
Important changes to the library:
28+
629
+ Fixed various read/write bugs in `BetterCharacterControl`.
730
+ Cloned the rigid body in `BetterCharacterControl.cloneFields()`.
831
+ Standardized `BetterCharacterControl` getters to use

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

README.md

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -239,17 +239,17 @@ repository location:
239239
jcenter()
240240
}
241241
dependencies {
242-
compile 'jme3utilities:Minie:0.6.5'
242+
compile 'jme3utilities:Minie:0.7.0'
243243
}
244244

245245
#### For Ant projects
246246

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

250-
+ https://github.com/stephengold/Minie/releases/tag/0.6.5
251-
+ https://github.com/stephengold/jme3-utilities/releases/tag/heart-2.19.0
252-
+ https://github.com/stephengold/jme3-utilities/releases/tag/debug-0.9.10
250+
+ https://github.com/stephengold/Minie/releases/tag/0.7.0
251+
+ https://github.com/stephengold/jme3-utilities/releases/tag/heart-2.20.0
252+
+ https://github.com/stephengold/jme3-utilities/releases/tag/debug-0.9.11
253253

254254
You'll want all 3 class JARs
255255
and probably the `-sources` and `-javadoc` JARs as well.
@@ -265,15 +265,15 @@ Open the project's properties in the IDE (JME 3.2 SDK or NetBeans 8.2):
265265
+ Navigate to the "jme3-utilities" project folder.
266266
+ Open the "heart" sub-project folder.
267267
+ Navigate to the "build/libs" folder.
268-
+ Select the "jme3-utilities-heart-2.19.0.jar" file.
268+
+ Select the "jme3-utilities-heart-2.20.0.jar" file.
269269
+ Click on the "Open" button.
270270
6. (optional) Add JARs for javadoc and sources:
271271
+ Click on the "Edit" button.
272272
+ Click on the "Browse..." button to the right of "Javadoc:"
273-
+ Select the "jme3-utilities-heart-2.19.0-javadoc.jar" file.
273+
+ Select the "jme3-utilities-heart-2.20.0-javadoc.jar" file.
274274
+ Click on the "Open" button.
275275
+ Click on the "Browse..." button to the right of "Sources:"
276-
+ Select the "jme3-utilities-heart-2.19.0-sources.jar" file.
276+
+ Select the "jme3-utilities-heart-2.20.0-sources.jar" file.
277277
+ Click on the "Open" button again.
278278
+ Click on the "OK" button to close the "Edit Jar Reference" dialog.
279279
7. Similarly, add the `jme3-utilities-debug` JAR(s).

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

3636
repositories {

0 commit comments

Comments
 (0)