Skip to content

Commit cdbcfc8

Browse files
committed
bump version to 0.7.5 and update release-notes.md and README.md
1 parent 81a48e3 commit cdbcfc8

4 files changed

Lines changed: 18 additions & 9 deletions

File tree

MinieLibrary/release-notes.md

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

3+
## Version 0.7.5 released on TBD
4+
5+
+ Added a `DumpFlags` enum and used it to simplify the API
6+
of `PhysicsDumper`. (API change)
7+
+ Added a `DumpFlag` to disable dumping collision objects in physics spaces.
8+
+ Added a `getSpatial()` method to the `VehicleControl` class.
9+
+ Based on version 2.23 of the `jme3-utilities-heart` library
10+
and JME 3.2.3-stable.
11+
312
## Version 0.7.4 released on 12 March 2019
413

514
+ Fixed bugs that caused crashes in `GImpactCollisionShape.read()` and

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

README.md

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -120,7 +120,7 @@ The evolution of Minie is chronicled in
120120

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

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

@@ -239,16 +239,16 @@ repository location:
239239
jcenter()
240240
}
241241
dependencies {
242-
compile 'jme3utilities:Minie:0.7.4'
242+
compile 'jme3utilities:Minie:0.7.5'
243243
}
244244

245245
#### For Ant projects
246246

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

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

253253
You'll want both class JARs
254254
and probably the `-sources` and `-javadoc` JARs as well.
@@ -264,15 +264,15 @@ Open the project's properties in the IDE (JME 3.2 SDK or NetBeans 8.2):
264264
+ Navigate to the "jme3-utilities" project folder.
265265
+ Open the "heart" sub-project folder.
266266
+ Navigate to the "build/libs" folder.
267-
+ Select the "jme3-utilities-heart-2.22.0.jar" file.
267+
+ Select the "jme3-utilities-heart-2.23.0.jar" file.
268268
+ Click on the "Open" button.
269269
6. (optional) Add JARs for javadoc and sources:
270270
+ Click on the "Edit" button.
271271
+ Click on the "Browse..." button to the right of "Javadoc:"
272-
+ Select the "jme3-utilities-heart-2.22.0-javadoc.jar" file.
272+
+ Select the "jme3-utilities-heart-2.23.0-javadoc.jar" file.
273273
+ Click on the "Open" button.
274274
+ Click on the "Browse..." button to the right of "Sources:"
275-
+ Select the "jme3-utilities-heart-2.22.0-sources.jar" file.
275+
+ Select the "jme3-utilities-heart-2.23.0-sources.jar" file.
276276
+ Click on the "Open" button again.
277277
+ Click on the "OK" button to close the "Edit Jar Reference" dialog.
278278
7. Similarly, add the `Minie` JAR(s).

common.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ gradle.projectsEvaluated {
3232
ext {
3333
// current versions of the libraries
3434
jmonkeyengineVersion = '3.2.3-stable'
35-
minieVersion = '0.7.4'
35+
minieVersion = '0.7.5'
3636
}
3737

3838
repositories {

0 commit comments

Comments
 (0)