Skip to content

Commit

Permalink
heart library: bump version to 0.9.11 and update release-notes.md
Browse files Browse the repository at this point in the history
  • Loading branch information
stephengold committed Jul 14, 2017
1 parent db80b16 commit cc12e6c
Show file tree
Hide file tree
Showing 4 changed files with 14 additions and 4 deletions.
2 changes: 1 addition & 1 deletion common.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ ext {
// which versions of the libraries
jcommanderVersion = '1.72'
jme3utilitiesdebugVersion = '0.7.1'
jme3utilitiesheartVersion = '0.9.10'
jme3utilitiesheartVersion = '0.9.11'
jme3utilitiesniftyVersion = '0.6.7'
jme3utilitiesuiVersion = '0.5.3'
jme3utilitiesxVersion = '0.2.1'
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
10 changes: 10 additions & 0 deletions heart/release-notes.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,15 @@
# release notes for the jme3-utilities-heart library and related tests

## Version 0.9.11 released on TBD

+ Fixed logic error in MyCamera.viewAspectRatio()
+ Moved mesh generators to new jme3utilities.mesh package
+ Rename Misc.getUserPath() to homePath() and generate absolute pathname
+ Add class RectangleOutlineMesh
+ Added methods Misc.getUserPath() and MyString.removeSuffix()
+ Add option to MyAsset.createWireframeMaterial() to set the point size
+ Creative use of mesh modes to save indices

## Version 0.9.10 released on 13 July 2017

+ Renamed Rectangle to RectangleMesh to avoid confusion
Expand Down
2 changes: 1 addition & 1 deletion heart/src/main/java/jme3utilities/Misc.java
Original file line number Diff line number Diff line change
Expand Up @@ -160,7 +160,7 @@ public static FilterPostProcessor getFpp(ViewPort viewPort,
* @return project name, library name, branch, and revision
*/
public static String getVersion() {
return "jme3-utilities jme3-utilities-heart master $Rev: 0.9.10+2 $";
return "jme3-utilities jme3-utilities-heart master $Rev: 0.9.11 $";
}

/**
Expand Down

0 comments on commit cc12e6c

Please sign in to comment.