Skip to content

Commit

Permalink
Minie library: bump version to 0.2.6 and update release-notes.md
Browse files Browse the repository at this point in the history
  • Loading branch information
stephengold committed Sep 1, 2018
1 parent f8f6d73 commit 10b1998
Show file tree
Hide file tree
Showing 4 changed files with 18 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
14 changes: 14 additions & 0 deletions Minie/release-notes.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,19 @@
# release notes for the Minie library and related tests

## Version 0.2.6 released on TBD

+ Fixed JME issues 883 and 887.
+ Ensured that debugViewPorts[] gets initialized in BulletAppState.
+ Changed AbstractPhysicsControl to handle ignoreTransform.
+ Changed DebugAppStateFilter interface to consider only Savable objects.
+ Added validation of method arguments, plus some assertions.
+ Reduced the scope of many fields and methods.
+ Finalized some fields.
+ Removed some unused fields and methods.
+ Added jme3-bullet-native runtime dependency to POM.
+ Replaced iterators with enhanced loops (for readability).
+ Standardized logging.

## Version 0.2.5 released on 24 August 2018

+ Bugfix: PhysicsDumper prints incorrect number of vehicles.
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.5+1";
return "master 0.2.6";
}
}
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.5'
minieVersion = '0.2.6'
skycontrolVersion = '0.9.13'
wesVersion = '0.3.6'
}
Expand Down

0 comments on commit 10b1998

Please sign in to comment.