Skip to content

Commit

Permalink
Minie library: bump version to 0.2.9 and update release-notes.md
Browse files Browse the repository at this point in the history
  • Loading branch information
stephengold committed Sep 10, 2018
1 parent 6d3a5de commit b5727a9
Show file tree
Hide file tree
Showing 4 changed files with 19 additions and 4 deletions.
4 changes: 2 additions & 2 deletions Minie/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -17,8 +17,8 @@ sourcesJar { baseName project.ext.baseName }
dependencies {
runtime "org.jmonkeyengine:jme3-bullet-native:$jmonkeyengineVersion"

//compile "jme3utilities:jme3-utilities-debug:$jme3utilitiesdebugVersion"
compile project(':debug')
compile "jme3utilities:jme3-utilities-debug:$jme3utilitiesdebugVersion"
//compile project(':debug')

// The following dependencies are for testing and should be commented
// out when building a release.
Expand Down
15 changes: 15 additions & 0 deletions Minie/release-notes.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,20 @@
# release notes for the Minie library and related tests

## Version 0.2.9 released on TBD

+ Removed PhysicsCollisionEventFactory.
+ Removed HeightfieldCollisionShape.createJmeMesh(),
VehicleWheel.getGroundObject(), and a constructor for PhysicsGhostObject.
+ Privatized various methods.
+ Fixed JME issue #894.
+ Implemented a cleaner fix for JME issue #889.
+ Deal with scale changes in physics-debug controls.
+ Decided that physics-debug controls should implement neither JmeCloneable
nor Savable.
+ Added validation of method arguments.
+ Finalized various fields.
+ Created the jme3utilities.minie.test package.

## Version 0.2.8 released on 3 September 2018

+ Removed some unnecessary methods.
Expand Down
2 changes: 1 addition & 1 deletion Minie/src/main/java/jme3utilities/minie/MinieVersion.java
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.2.8+1";
return "master 0.2.9";
}
}
2 changes: 1 addition & 1 deletion common.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ ext {
jme3utilitiesuiVersion = '0.6.4'
jme3utilitiesxVersion = '0.2.4'
jmonkeyengineVersion = '3.2.1-stable'
minieVersion = '0.2.8'
minieVersion = '0.2.9'
skycontrolVersion = '0.9.13'
wesVersion = '0.3.6'
}
Expand Down

0 comments on commit b5727a9

Please sign in to comment.