Skip to content

Commit

Permalink
heart library: bump version to 2.8.0 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 792c609 commit 6508984
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 6 deletions.
6 changes: 3 additions & 3 deletions common.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ ext {
// current versions of the libraries
jcommanderVersion = '1.74'
jme3utilitiesdebugVersion = '0.9.0'
jme3utilitiesheartVersion = '2.7.0'
jme3utilitiesheartVersion = '2.8.0'
jme3utilitiesniftyVersion = '0.7.13'
jme3utilitiesuiVersion = '0.6.4'
jme3utilitiesxVersion = '0.2.4'
Expand All @@ -33,11 +33,11 @@ ext {
}

repositories {
//mavenLocal()
maven { url 'https://dl.bintray.com/stephengold/jme3utilities' }
maven { url 'https://dl.bintray.com/stephengold/org.jmonkeyengine' }
maven { url 'https://dl.bintray.com/stephengold/org.jmonkeyengine' } // for tests
jcenter()
maven { url 'http://nifty-gui.sourceforge.net/nifty-maven-repo' }
//mavenLocal()
}

task sourcesJar(type: Jar, dependsOn: classes, description: 'Create a jar of source files.') {
Expand Down
9 changes: 7 additions & 2 deletions heart/release-notes.md
Original file line number Diff line number Diff line change
@@ -1,13 +1,18 @@
# release notes for the jme3-utilities-heart library and related tests

## Version 2.8.0 released on TBD

+ Added an isScaleUniform() method to the MyVector3f class
+ Added 2 nonZero() methods and a nonNegative() method to the Validate class

## Version 2.7.0 released on 22 August 2018

+ Added getWorldScale() method to the MySpatial class
+ Added a getWorldScale() method to the MySpatial class
+ Added support for VectorXZ in Misc.deepClone()

## Version 2.6.1 released on 21 August 2018

+ Fixed errors in 3 material definitions
+ Fixed logic errors in 3 material definitions
+ Added support for Byte, Character, and String in Misc.deepClone()

## Version 2.6.0 released on 17 August 2018
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 @@ -242,7 +242,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: 2.7.0+1 $";
return "jme3-utilities jme3-utilities-heart master $Rev: 2.8.0 $";
}

/**
Expand Down

0 comments on commit 6508984

Please sign in to comment.