Skip to content

Commit

Permalink
bump version to 0.7.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 Mar 20, 2019
1 parent 81a48e3 commit cdbcfc8
Show file tree
Hide file tree
Showing 4 changed files with 18 additions and 9 deletions.
9 changes: 9 additions & 0 deletions MinieLibrary/release-notes.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,14 @@
# release notes for the Minie library and related examples

## Version 0.7.5 released on TBD

+ Added a `DumpFlags` enum and used it to simplify the API
of `PhysicsDumper`. (API change)
+ Added a `DumpFlag` to disable dumping collision objects in physics spaces.
+ Added a `getSpatial()` method to the `VehicleControl` class.
+ Based on version 2.23 of the `jme3-utilities-heart` library
and JME 3.2.3-stable.

## Version 0.7.4 released on 12 March 2019

+ Fixed bugs that caused crashes in `GImpactCollisionShape.read()` and
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.7.4+1";
return "master 0.7.5";
}
}
14 changes: 7 additions & 7 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -120,7 +120,7 @@ The evolution of Minie is chronicled in

### jMonkeyEngine3 (jME3) Software Development Kit (SDK)

Minie currently targets Version 3.2.2 of jMonkeyEngine.
Minie currently targets Version 3.2.3 of jMonkeyEngine.
You are welcome to use the Engine without also using the SDK, but I use the SDK,
and the following installation instructions assume you will too.

Expand Down Expand Up @@ -239,16 +239,16 @@ repository location:
jcenter()
}
dependencies {
compile 'jme3utilities:Minie:0.7.4'
compile 'jme3utilities:Minie:0.7.5'
}

#### For Ant projects

For projects built using Ant, download the 2 non-standard
libraries from GitHub:

+ https://github.com/stephengold/Minie/releases/tag/0.7.4
+ https://github.com/stephengold/jme3-utilities/releases/tag/heart-2.22.0
+ https://github.com/stephengold/Minie/releases/tag/0.7.5
+ https://github.com/stephengold/jme3-utilities/releases/tag/heart-2.23.0

You'll want both class JARs
and probably the `-sources` and `-javadoc` JARs as well.
Expand All @@ -264,15 +264,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.22.0.jar" file.
+ Select the "jme3-utilities-heart-2.23.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.22.0-javadoc.jar" file.
+ Select the "jme3-utilities-heart-2.23.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.22.0-sources.jar" file.
+ Select the "jme3-utilities-heart-2.23.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 `Minie` JAR(s).
Expand Down
2 changes: 1 addition & 1 deletion common.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ gradle.projectsEvaluated {
ext {
// current versions of the libraries
jmonkeyengineVersion = '3.2.3-stable'
minieVersion = '0.7.4'
minieVersion = '0.7.5'
}

repositories {
Expand Down

0 comments on commit cdbcfc8

Please sign in to comment.