Skip to content

Commit

Permalink
bump version to 0.8.1 and update release-notes.md
Browse files Browse the repository at this point in the history
  • Loading branch information
stephengold committed Nov 28, 2023
1 parent fcccd9d commit c33756e
Show file tree
Hide file tree
Showing 3 changed files with 21 additions and 2 deletions.
16 changes: 16 additions & 0 deletions WesLibrary/release-notes.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,21 @@
# release log for the Wes library and related examples

## Version 0.8.1: released on TBD

+ Bugfix: `TrackEdit.cloneTrack()` doesn't clone deeply enough
+ Bugfix: `AnimationEdit.zeroFirst()` has unexpected side effects
+ Renamed 3 methods and deprecated the original names:
+ `MyAnimation.getScales()`
+ `MyAnimation.getRotations()`
+ `MyAnimation.getTranslations()`
+ Added the `SupportUtils` class (derived from Maud).
+ Added 4 new methods:
+ `AnimationEdit.replaceTranslations()`
+ `AnimationEdit.translateForInitialSupport()`
+ `AnimationEdit.translateForSupport()`
+ `AnimationEdit.translateForTraction()`
+ Based on v8.8.0 of the Heart library.

## Version 0.8.0: released on 9 October 2023

+ Bugfix: 4 methods use wrong fill transform for the new animation system:
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.8.1-SNAPSHOT";
return "master 0.8.1";
}
}
5 changes: 4 additions & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -5,14 +5,17 @@ plugins {
}

ext {
//wesSnapshot = '-SNAPSHOT' // for development builds
wesSnapshot = '' // for release builds

jmeTarget = '' // distinguish non-JME libraries built for specific JME releases

// module coordinates of external dependencies:
heartCoordinates = 'com.github.stephengold:Heart:8.8.0' + jmeTarget

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

subprojects {
Expand Down

0 comments on commit c33756e

Please sign in to comment.