Skip to content

Commit

Permalink
bump version to 0.7.0 and update release-notes.md
Browse files Browse the repository at this point in the history
  • Loading branch information
stephengold committed Feb 10, 2022
1 parent ad649c5 commit 7c7ccfc
Show file tree
Hide file tree
Showing 3 changed files with 19 additions and 2 deletions.
17 changes: 17 additions & 0 deletions WesLibrary/release-notes.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,22 @@
# release log for the Wes library and related examples

## Version 0.7.0: released on TBD

+ Made `TrackEdit.cloneTrack()` into a generic method. (API change)
+ Finalized the `AnimationEdit` and `TrackEdit` classes. (API change)
+ Bugfix: `TrackEdit.reverse()` assumes a `MorphTrack`
has a exactly one target
+ Added 7 public methods:
+ `AnimationEdit.convertToInPlace()`
+ `Pose.findSkeleton()`
+ `TrackEdit.behead()` for a MorphTrack
+ `TrackEdit.convertToInPlace()`
+ `TrackEdit.removeRepeats()` for a MorphTrack
+ `TrackEdit.setDuration()` for a MorphTrack
+ `TrackEdit.truncate()` for a MorphTrack
+ Based on v7.3.0 of the Heart Library and v0.9.9 of Acorus.
+ Upgraded to Gradle v7.4.0 .

## Version 0.6.8: released on 23 January 2022

+ Bugfix: logic error in the `TrackEdit.behead()` method
Expand Down
2 changes: 1 addition & 1 deletion WesLibrary/src/main/java/jme3utilities/wes/WesVersion.java
Original file line number Diff line number Diff line change
Expand Up @@ -59,6 +59,6 @@ private WesVersion() {
* @return branch and revision (not null, not empty)
*/
public static String versionShort() {
return "master 0.6.9-SNAPSHOT";
return "master 0.7.0";
}
}
2 changes: 1 addition & 1 deletion common.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ apply plugin: 'java'

ext { // current versions of libraries:
jme3Version = '3.5.0-stable'
wesVersion = '0.6.9-SNAPSHOT'
wesVersion = '0.7.0'
}

sourceCompatibility = JavaVersion.VERSION_1_7
Expand Down

0 comments on commit 7c7ccfc

Please sign in to comment.