Skip to content

Commit

Permalink
Minie library: bump version to 0.2.5 and update release-notes.md
Browse files Browse the repository at this point in the history
  • Loading branch information
stephengold committed Aug 24, 2018
1 parent 942c5c9 commit 5c77bff
Show file tree
Hide file tree
Showing 4 changed files with 20 additions and 8 deletions.
4 changes: 2 additions & 2 deletions Minie/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -15,8 +15,8 @@ javadocJar { baseName project.ext.baseName }
sourcesJar { baseName project.ext.baseName }

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

task pom {
Expand Down
20 changes: 16 additions & 4 deletions Minie/release-notes.md
Original file line number Diff line number Diff line change
@@ -1,9 +1,21 @@
# release notes for the Minie library and related tests

## Version 0.2.4 released 22 August 2018

+ Rename MinieVersion.getVersionShort() to versionShort().
+ Use MyAsset to create debug materials.
## Version 0.2.5 released on TBD

+ Bugfix: PhysicsDumper prints incorrect number of vehicles.
+ Bugfix for JME issue #867 contributed by Riccardo Balbo.
+ Privatized numerous protected fields.
+ Removed 3 PhysicsSpace constructors.
+ Enhanced PhysicsDumper to handle app states and print the joint list and
(non-identity) orientation for each rigid body.
+ Added BulletAppState.getBroadphaseType().
+ Added validation of method arguments.
+ Changed BulletAppState.setWorldMax() and .setWorldMin() to avoid aliasing.

## Version 0.2.4 released on 22 August 2018

+ Renamed MinieVersion.getVersionShort() to versionShort().
+ Used MyAsset to create debug materials.
+ In BulletDebugAppState, only render viewports that are enabled.
+ Based on version 2.7 of the jme3-utilities-heart library.

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.4+1";
return "master 0.2.5";
}
}
2 changes: 1 addition & 1 deletion common.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ ext {
jme3utilitiesuiVersion = '0.6.4'
jme3utilitiesxVersion = '0.2.4'
jmonkeyengineVersion = '3.2.1-stable'
minieVersion = '0.2.4'
minieVersion = '0.2.5'
skycontrolVersion = '0.9.13'
wesVersion = '0.3.6'
}
Expand Down

0 comments on commit 5c77bff

Please sign in to comment.