Skip to content

Commit

Permalink
bump library versions: Minie -> 0.2.3, nifty -> 0.7.13
Browse files Browse the repository at this point in the history
  • Loading branch information
stephengold committed Aug 17, 2018
1 parent 072e325 commit 251778c
Show file tree
Hide file tree
Showing 7 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
7 changes: 7 additions & 0 deletions Minie/release-notes.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,12 @@
# release notes for the Minie library and related tests

## Version 0.2.3 released on TBD

+ Renamed ray-test flag accessors in PhysicsSpace class.
+ Added maxSubSteps() method to the PhysicsSpace class.
+ Include more detail when dumping a physics space.
+ Based on version 2.6 of the jme3-utilities-heart library.

## Version 0.2.2 released on 24 July 2018

+ Enhanced PhysicsDescriber to describe axes of cone shapes.
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 getVersionShort() {
return "master 0.2.2+1";
return "master 0.2.3";
}
}
4 changes: 2 additions & 2 deletions common.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -21,11 +21,11 @@ ext {
jcommanderVersion = '1.74'
jme3utilitiesdebugVersion = '0.8.10'
jme3utilitiesheartVersion = '2.6.0'
jme3utilitiesniftyVersion = '0.7.12'
jme3utilitiesniftyVersion = '0.7.13'
jme3utilitiesuiVersion = '0.6.4'
jme3utilitiesxVersion = '0.2.4'
jmonkeyengineVersion = '3.2.1-stable'
minieVersion = '0.2.2'
minieVersion = '0.2.3'
skycontrolVersion = '0.9.13'
wesVersion = '0.3.6'
}
Expand Down
4 changes: 2 additions & 2 deletions nifty/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -18,8 +18,8 @@ dependencies {
compile 'com.github.nifty-gui:nifty:1.4.2'
compile 'com.github.nifty-gui:nifty-default-controls:1.4.2'

//compile "jme3utilities:jme3-utilities-ui:$jme3utilitiesuiVersion"
compile project(':ui')
compile "jme3utilities:jme3-utilities-ui:$jme3utilitiesuiVersion"
//compile project(':ui')
}

task pom {
Expand Down
5 changes: 5 additions & 0 deletions nifty/release-notes.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,10 @@
# release notes for the jme3-utilities-nifty library and related tests

## Version 0.7.13 released on TBD

+ Add a commit description to TextEntryDialog class.
+ Dim the screen by 25% for each popup menu.

## Version 0.7.12 released on 24 July 2018

+ Based on version 2.5 of the jme3-utilities-heart library.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -60,6 +60,6 @@ private LibraryVersion() {
* @return branch and revision (not null, not empty)
*/
public static String getVersionShort() {
return "master 0.7.12+1";
return "master 0.7.13";
}
}

0 comments on commit 251778c

Please sign in to comment.