Skip to content

Commit

Permalink
nifty library: bump version to 0.5.2 and update release-notes.md
Browse files Browse the repository at this point in the history
  • Loading branch information
stephengold committed Apr 13, 2017
1 parent c94277e commit f088afb
Show file tree
Hide file tree
Showing 5 changed files with 16 additions and 8 deletions.
4 changes: 4 additions & 0 deletions common.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@ apply plugin: 'java'
apply plugin: 'maven'

group = 'jme3utilities'

//sourceCompatibility = '1.7'
sourceCompatibility = '1.8'

Expand All @@ -15,7 +16,10 @@ gradle.projectsEvaluated {

ext {
jcommanderVersion = '1.68'
jme3utilitiesniftyVersion = '0.5.2'
jme3utilitiesuiVersion = '0.5.0'
jmonkeyengineVersion = '3.1.0-stable'
skycontrolVersion = '0.9.2'
}

repositories {
Expand Down
6 changes: 3 additions & 3 deletions nifty/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
description = 'NiftyGUI library for jMonkeyEngine'
ext {
artifact = 'jme3-utilities-nifty'
version = '0.5.1'
version = "$jme3utilitiesniftyVersion"
baseName = "${artifact}-${version}"
}

Expand All @@ -18,10 +18,10 @@ dependencies {
compile "org.jmonkeyengine:jme3-core:$jmonkeyengineVersion"
compile "org.jmonkeyengine:jme3-niftygui:$jmonkeyengineVersion"

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

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

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

## Version 0.5.1 released TBD
## Version 0.5.2 released TBD

Improved sizing of popup menus.

## Version 0.5.1 released 12 April 2017

Fixed assertion error when activating BindScreen from a popup.

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.5.1+1";
return "master 0.5.2";
}
}
6 changes: 3 additions & 3 deletions tests/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -20,16 +20,16 @@ dependencies {
compile "org.jmonkeyengine:jme3-terrain:$jmonkeyengineVersion"
compile "org.jmonkeyengine:jme3-testdata:3.1.0-stable"

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

//compile "jme3utilities:jme3-utilities-debug:0.5.0"
compile project(':debug')

//compile "jme3utilities:jme3-utilities-nifty:0.5.1"
//compile "jme3utilities:jme3-utilities-nifty:$jme3utilitiesniftyVersion"
compile project(':nifty')

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

//compile "jme3utilities:jme3-utilities-x:0.2.0"
Expand Down

0 comments on commit f088afb

Please sign in to comment.