Skip to content

Commit

Permalink
bump version to 0.8.0 and update release-notes.md
Browse files Browse the repository at this point in the history
  • Loading branch information
stephengold committed Oct 9, 2023
1 parent ddf3560 commit bca0b97
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.8.0: released on TBD

+ Bugfix: 4 methods use wrong fill transform for the new animation system:
+ `TweenTransforms.interpolate()`
+ `TrackEdit.insertKeyframe()`
+ `TrackEdit.replaceKeyframe()`
+ `TrackEdit.truncate()`
+ Added a new `TransformTrackBuilder` class.
+ Added 2 more constructors for `SkeletonMapping`, to construct one-to-one
mappings for an `Armature` or `Skeleton`.
+ In AppChooser:
+ Added "+" to indicate apps with saved settings.
+ Changed macOS startup from glfw_async to -XstartOnFirstThread.
+ Targeted JME version 3.6.1-stable.
+ Based on v8.7.0 of the Heart library and v1.1.0 of Acorus.
+ Upgraded to Gradle v8.4 .

## Version 0.7.5: released on 22 March 2023

+ Targeted JME version 3.6.0-stable.
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.7.6-SNAPSHOT";
return "master 0.8.0";
}
}
2 changes: 1 addition & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ ext {

// current versions of libraries:
jme3Version = '3.6.1-stable'
wesVersion = '0.7.6' + jmeTarget + '-SNAPSHOT'
wesVersion = '0.8.0' + jmeTarget
}

subprojects {
Expand Down

0 comments on commit bca0b97

Please sign in to comment.