Skip to content

Commit

Permalink
bump debug library to version 0.5.1, bump nifty library to 0.6.2+1
Browse files Browse the repository at this point in the history
  • Loading branch information
stephengold committed May 4, 2017
1 parent 5b6be73 commit 3b7f83d
Show file tree
Hide file tree
Showing 6 changed files with 11 additions and 5 deletions.
1 change: 1 addition & 0 deletions common.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,7 @@ gradle.projectsEvaluated {
ext {
// version numbers for libraries
jcommanderVersion = '1.71'
jme3utilitiesdebugVersion = '0.5.1'
jme3utilitiesniftyVersion = '0.6.2'
jme3utilitiesuiVersion = '0.5.0'
jmonkeyengineVersion = '3.1.0-stable'
Expand Down
5 changes: 3 additions & 2 deletions debug/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
description = 'debugging library for jMonkeyEngine'
ext {
artifact = 'jme3-utilities-debug'
version = '0.5.0'
version = "$jme3utilitiesdebugVersion"
baseName = "${artifact}-${version}"
}

Expand All @@ -16,7 +16,8 @@ sourcesJar { baseName "${project.ext.baseName}" }

dependencies {
compile "org.jmonkeyengine:jme3-core:$jmonkeyengineVersion"
compile "jme3utilities:SkyControl:0.9.2"

compile "jme3utilities:SkyControl:$skycontrolVersion"
//compile project(':SkyControl')
}

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

## Version 0.5.1 released on TBD

Made AxesControl and SkeletonDebugControl cloneable.

## Version 0.5.0 released on 9 April 2017

This was the initial baseline release.
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.0+1";
return "master 0.5.1";
}
}
2 changes: 1 addition & 1 deletion nifty/release-notes.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# release notes for the jme3-utilities-nifty library and related tests

## Version 0.6.2 released TBD
## Version 0.6.2 released 2 May 2017

Public access to updateSliderStatus() in GuiScreenController class.

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.2";
return "master 0.6.2+1";
}
}

0 comments on commit 3b7f83d

Please sign in to comment.