Skip to content

Commit

Permalink
bump lib versions: debug->0.6.0, nifty->0.6.5
Browse files Browse the repository at this point in the history
  • Loading branch information
stephengold committed Jun 24, 2017
1 parent 790c0d6 commit 2f87179
Show file tree
Hide file tree
Showing 7 changed files with 21 additions and 10 deletions.
4 changes: 2 additions & 2 deletions common.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -18,9 +18,9 @@ gradle.projectsEvaluated {
ext {
// version numbers for libraries
jcommanderVersion = '1.72'
jme3utilitiesdebugVersion = '0.5.6'
jme3utilitiesdebugVersion = '0.6.0'
jme3utilitiesheartVersion = '0.9.8'
jme3utilitiesniftyVersion = '0.6.4'
jme3utilitiesniftyVersion = '0.6.5'
jme3utilitiesuiVersion = '0.5.3'
jme3utilitiesxVersion = '0.2.1'
jmonkeyengineVersion = '3.1.0-stable'
Expand Down
4 changes: 2 additions & 2 deletions debug/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -17,8 +17,8 @@ sourcesJar { baseName "${project.ext.baseName}" }
dependencies {
compile "org.jmonkeyengine:jme3-core:$jmonkeyengineVersion"

//compile "jme3utilities:jme3-utilities-heart:$jme3utilitiesheartVersion"
compile project(':heart')
compile "jme3utilities:jme3-utilities-heart:$jme3utilitiesheartVersion"
//compile project(':heart')
}

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

## Version 0.6.0 released on TBD

+ Added a BoundsVisualizer
+ Bug fix for AxesControl.getAxisLength(): return correct value
+ Added AxesControl.tipLocation() method

## Version 0.5.6 released on 30 May 2017

+ Handle null spatials in SkeletonDebugControl
Expand Down
2 changes: 1 addition & 1 deletion debug/src/main/java/jme3utilities/debug/DebugVersion.java
Original file line number Diff line number Diff line change
Expand Up @@ -59,6 +59,6 @@ private DebugVersion() {
* @return branch and revision (not null, not empty)
*/
public static String getVersionShort() {
return "master 0.5.6+1";
return "master 0.6.0";
}
}
8 changes: 4 additions & 4 deletions nifty/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -18,11 +18,11 @@ dependencies {
compile "org.jmonkeyengine:jme3-core:$jmonkeyengineVersion"
compile "org.jmonkeyengine:jme3-niftygui:$jmonkeyengineVersion"

//compile "jme3utilities:jme3-utilities-heart:$jme3utilitiesheartVersion"
compile project(':heart')
compile "jme3utilities:jme3-utilities-heart:$jme3utilitiesheartVersion"
//compile project(':heart')

//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.6.5 released on TBD

+ Added simpler API for PopScreenController.showTextEntryDialog()
+ Add 2 dialog controllers: FloatDialog and IntegerDialog.

## Version 0.6.4 released on 20 May 2017

+ The library now depends on jme3-utilities-heart instead of SkyControl.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -59,6 +59,6 @@ private LibraryVersion() {
* @return branch and revision (not null, not empty)
*/
public static String getVersionShort() {
return "master 0.6.4+1";
return "master 0.6.5";
}
}

0 comments on commit 2f87179

Please sign in to comment.