Skip to content

Commit

Permalink
Minie library: bump version to 0.2.8 and update release-notes.md
Browse files Browse the repository at this point in the history
  • Loading branch information
stephengold committed Sep 3, 2018
1 parent 3ca388f commit 1f32e02
Show file tree
Hide file tree
Showing 4 changed files with 13 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
9 changes: 9 additions & 0 deletions Minie/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 tests

## Version 0.2.8 released on TBD

+ Removed some unnecessary methods.
+ Reduced the scope of many methods.
+ Renamed getMass() to mass() in MyControlP.
+ Fixed JME issue #889.
+ Added validation of method arguments, plus some assertions.
+ Based on version 2.8 of the jme3-utilities-heart library.

## Version 0.2.7 released on 1 September 2018

+ Don't setLocalScale() on spatials controlled by debug controls; this is
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.7+1";
return "master 0.2.8";
}
}
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.7'
minieVersion = '0.2.8'
skycontrolVersion = '0.9.13'
wesVersion = '0.3.6'
}
Expand Down

0 comments on commit 1f32e02

Please sign in to comment.