Skip to content

Commit 7c7ccfc

Browse files
committed
bump version to 0.7.0 and update release-notes.md
1 parent ad649c5 commit 7c7ccfc

File tree

3 files changed

+19
-2
lines changed

3 files changed

+19
-2
lines changed

WesLibrary/release-notes.md

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,22 @@
11
# release log for the Wes library and related examples
22

3+
## Version 0.7.0: released on TBD
4+
5+
+ Made `TrackEdit.cloneTrack()` into a generic method. (API change)
6+
+ Finalized the `AnimationEdit` and `TrackEdit` classes. (API change)
7+
+ Bugfix: `TrackEdit.reverse()` assumes a `MorphTrack`
8+
has a exactly one target
9+
+ Added 7 public methods:
10+
+ `AnimationEdit.convertToInPlace()`
11+
+ `Pose.findSkeleton()`
12+
+ `TrackEdit.behead()` for a MorphTrack
13+
+ `TrackEdit.convertToInPlace()`
14+
+ `TrackEdit.removeRepeats()` for a MorphTrack
15+
+ `TrackEdit.setDuration()` for a MorphTrack
16+
+ `TrackEdit.truncate()` for a MorphTrack
17+
+ Based on v7.3.0 of the Heart Library and v0.9.9 of Acorus.
18+
+ Upgraded to Gradle v7.4.0 .
19+
320
## Version 0.6.8: released on 23 January 2022
421

522
+ Bugfix: logic error in the `TrackEdit.behead()` method

WesLibrary/src/main/java/jme3utilities/wes/WesVersion.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -59,6 +59,6 @@ private WesVersion() {
5959
* @return branch and revision (not null, not empty)
6060
*/
6161
public static String versionShort() {
62-
return "master 0.6.9-SNAPSHOT";
62+
return "master 0.7.0";
6363
}
6464
}

common.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ apply plugin: 'java'
44

55
ext { // current versions of libraries:
66
jme3Version = '3.5.0-stable'
7-
wesVersion = '0.6.9-SNAPSHOT'
7+
wesVersion = '0.7.0'
88
}
99

1010
sourceCompatibility = JavaVersion.VERSION_1_7

0 commit comments

Comments
 (0)