Skip to content

Commit

Permalink
heart library: bump version to 0.9.23 and update release-notes.md
Browse files Browse the repository at this point in the history
  • Loading branch information
stephengold committed Sep 20, 2017
1 parent 12313e0 commit 03f3684
Show file tree
Hide file tree
Showing 3 changed files with 21 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 {
// current versions of the libraries
jcommanderVersion = '1.72'
jme3utilitiesdebugVersion = '0.7.4'
jme3utilitiesheartVersion = '0.9.22'
jme3utilitiesheartVersion = '0.9.23'
jme3utilitiesniftyVersion = '0.6.10'
jme3utilitiesuiVersion = '0.5.9'
jme3utilitieswesVersion = '0.2.3'
Expand Down
17 changes: 17 additions & 0 deletions heart/release-notes.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,22 @@
# release notes for the jme3-utilities-heart library and related tests

## Version 0.9.23 released on TBD

+ Removed the MyAnimation.listAnimations(), MySkeleton.findBoneIndex(), and
MyString.getLine() methods
+ Renamed MyAnimation.describe(Track) to describeTrackType
+ Require an anim control to invoke MyAnimation.describe(Animation,...) or
MyAnimation.describe(Track,...)
+ Require a control to invoke MyControl.describe()
+ Changed the MyString.join() methods to handle items of any type
+ Changed MyString.sharedPrefixLength() to handle char sequences of any type
+ Added methods DomeMesh.getUVScale(), MyBone.descendsFrom(), and
MyControl.findSkeleton() methods
+ Improved support for multiple skeletons in MySkeleton.findBone()
+ Improved support for SpatialTrack in MyAnimation.describe(Track,...) and
also in MyAnimation.getTargetName()
+ Improved support for attach nodes in MySkeleton.setName()

## Version 0.9.22 released on 11 September 2017

+ Renamed MyControl.isValid() to canDisable()
Expand Down
6 changes: 3 additions & 3 deletions heart/src/main/java/jme3utilities/Misc.java
Original file line number Diff line number Diff line change
Expand Up @@ -65,8 +65,8 @@ public class Misc {
/**
* message logger for this class
*/
final private static Logger logger = Logger.getLogger(
Misc.class.getName());
final private static Logger logger
= Logger.getLogger(Misc.class.getName());
// *************************************************************************
// constructors

Expand Down Expand Up @@ -184,7 +184,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.22+1 $";
return "jme3-utilities jme3-utilities-heart master $Rev: 0.9.23 $";
}

/**
Expand Down

0 comments on commit 03f3684

Please sign in to comment.