Skip to content

Commit

Permalink
debug library: bump version to 0.9.1 and update release-notes.md
Browse files Browse the repository at this point in the history
  • Loading branch information
stephengold committed Sep 3, 2018
1 parent 5d3da74 commit 992e140
Show file tree
Hide file tree
Showing 4 changed files with 13 additions and 8 deletions.
2 changes: 1 addition & 1 deletion common.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ gradle.projectsEvaluated {
ext {
// current versions of the libraries
jcommanderVersion = '1.74'
jme3utilitiesdebugVersion = '0.9.0'
jme3utilitiesdebugVersion = '0.9.1'
jme3utilitiesheartVersion = '2.8.0'
jme3utilitiesniftyVersion = '0.7.13'
jme3utilitiesuiVersion = '0.6.4'
Expand Down
4 changes: 2 additions & 2 deletions debug/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -20,8 +20,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
13 changes: 9 additions & 4 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.9.1 released on TBD

+ Added a describeScale(Vector3f) method to the Describer class.
+ Based on version 2.8 of the heart library.

## Version 0.9.0 released on 22 August 2018

+ Replaced Dumper methods with Describer methods. (API change)
Expand All @@ -13,17 +18,17 @@
(API change)
+ Added capability to describe depthWrite flag.
+ Generate shape textures programmatically.
+ Based on version 2.7 of heart library.
+ Based on version 2.7 of the heart library.

## Version 0.8.10 released on 17 August 2018

+ Describe locations and directions of lights.
+ Added capability to describe and dump material-parameter overrides.
+ Based on version 2.6 of heart library.
+ Based on version 2.6 of the heart library.

## Version 0.8.9 released on 24 July 2018

+ Based on version 2.5 of heart library.
+ Based on version 2.5 of the heart library.
+ No longer need to setWireframe flag in visualizer render state.

## Version 0.8.8 released on 18 February 2018
Expand All @@ -32,7 +37,7 @@

## Version 0.8.7 released on 2 February 2018

+ Based on version 2.2 of heart library.
+ Based on version 2.2 of the heart library.

## Version 0.8.6 released on 27 January 2018

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 @@ -60,6 +60,6 @@ private DebugVersion() {
* @return branch and revision (not null, not empty)
*/
public static String versionShort() {
return "master 0.9.0+1";
return "master 0.9.1";
}
}

0 comments on commit 992e140

Please sign in to comment.