Skip to content

Commit

Permalink
bump lib versions: debug->0.7.5, nifty->0.7.0, sky->0.9.6
Browse files Browse the repository at this point in the history
  • Loading branch information
stephengold committed Sep 20, 2017
1 parent 20272ef commit 58994b0
Show file tree
Hide file tree
Showing 10 changed files with 40 additions and 21 deletions.
6 changes: 3 additions & 3 deletions SkyControl/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ description = 'sky simulation library for jMonkeyEngine'
ext {
artifact = 'SkyControl'
version = "$skycontrolVersion"
baseName = "${artifact}-${version}"
baseName = "$artifact-$version"
}

build { dependsOn 'pom' }
Expand All @@ -21,8 +21,8 @@ dependencies {
compile "org.jmonkeyengine:jme3-effects:$jmonkeyengineVersion"
compile "org.jmonkeyengine:jme3-terrain:$jmonkeyengineVersion"

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

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

## Version 0.9.6 released TBD

+ use the DomeMesh class from the heart library
+ move wireframe material to heart library
+ make SkyControl JmeCloneable
+ fix some potential aliasing bugs related to Material.setColor()
+ standardize the BSD license texts

## Version 0.9.5 released on 20 May 2017

Moved 2 general-purpose packages to new "jme3-utilites-heart" library, which
Expand Down
2 changes: 1 addition & 1 deletion SkyControl/src/main/java/jme3utilities/sky/Constants.java
Original file line number Diff line number Diff line change
Expand Up @@ -107,6 +107,6 @@ private Constants() {
* @return branch and revision (not null, not empty)
*/
public static String getVersionShort() {
return "master 0.9.5+1";
return "master 0.9.6";
}
}
6 changes: 3 additions & 3 deletions common.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -18,14 +18,14 @@ gradle.projectsEvaluated {
ext {
// current versions of the libraries
jcommanderVersion = '1.72'
jme3utilitiesdebugVersion = '0.7.4'
jme3utilitiesdebugVersion = '0.7.5'
jme3utilitiesheartVersion = '0.9.23'
jme3utilitiesniftyVersion = '0.6.10'
jme3utilitiesniftyVersion = '0.7.0'
jme3utilitiesuiVersion = '0.5.9'
jme3utilitieswesVersion = '0.2.3'
jme3utilitiesxVersion = '0.2.1'
jmonkeyengineVersion = '3.1.0-stable'
skycontrolVersion = '0.9.5'
skycontrolVersion = '0.9.6'
}

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

build { dependsOn 'pom' }
Expand All @@ -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
5 changes: 5 additions & 0 deletions debug/release-notes.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,10 @@
# release notes for the jme3-utilities-debug library and related tests

## Version 0.7.5 released TBD

+ Added hooks for describing materials and meshes
+ Standardized the BSD license texts

## Version 0.7.4 released on 17 August 2017

+ Split Describer off from the Dumper class
Expand Down
6 changes: 3 additions & 3 deletions debug/src/main/java/jme3utilities/debug/DebugVersion.java
Original file line number Diff line number Diff line change
Expand Up @@ -41,8 +41,8 @@ public class DebugVersion {
/**
* message logger for this class
*/
final private static Logger logger = Logger.getLogger(
DebugVersion.class.getName());
final private static Logger logger
= Logger.getLogger(DebugVersion.class.getName());
// *************************************************************************
// constructors

Expand All @@ -60,6 +60,6 @@ private DebugVersion() {
* @return branch and revision (not null, not empty)
*/
public static String getVersionShort() {
return "master 0.7.4+1";
return "master 0.7.5";
}
}
10 changes: 5 additions & 5 deletions nifty/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ description = 'NiftyGUI library for jMonkeyEngine'
ext {
artifact = 'jme3-utilities-nifty'
version = "$jme3utilitiesniftyVersion"
baseName = "${artifact}-${version}"
baseName = "$artifact-$version"
}

build { dependsOn 'pom' }
Expand All @@ -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
6 changes: 6 additions & 0 deletions nifty/release-notes.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
# release notes for the jme3-utilities-nifty library and related tests

## Version 0.7.0 released TBD

+ Require a list or array to invoke PopScreenController.showPopupMenu().
+ Add multiSelect dialog box.
+ Standardized the BSD license texts

## Version 0.6.10 released 5 September 2017

+ Align infobox body text with the top of its panel.
Expand Down
6 changes: 3 additions & 3 deletions nifty/src/main/java/jme3utilities/nifty/LibraryVersion.java
Original file line number Diff line number Diff line change
Expand Up @@ -41,8 +41,8 @@ public class LibraryVersion {
/**
* message logger for this class
*/
final private static Logger logger = Logger.getLogger(
LibraryVersion.class.getName());
final private static Logger logger
= Logger.getLogger(LibraryVersion.class.getName());
// *************************************************************************
// constructors

Expand All @@ -60,6 +60,6 @@ private LibraryVersion() {
* @return branch and revision (not null, not empty)
*/
public static String getVersionShort() {
return "master 0.6.10+1";
return "master 0.7.0";
}
}

0 comments on commit 58994b0

Please sign in to comment.