Skip to content

Commit

Permalink
bump version to 0.7.1 and update release-notes.md
Browse files Browse the repository at this point in the history
  • Loading branch information
stephengold committed Feb 24, 2022
1 parent 0dd397b commit 1277377
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 4 deletions.
10 changes: 9 additions & 1 deletion WesLibrary/release-notes.md
Original file line number Diff line number Diff line change
@@ -1,10 +1,18 @@
# release log for the Wes library and related examples

## Version 0.7.1: released on TBD

+ Bugfix: `TweenTransforms` uses the wrong cycle time
to interpolate a `TransformTrack`.
+ In WesExamples:
+ Added a demo app for `AnimationEdit.convertToInPlace()`.
+ Added Adi Barda's "ninja-fighter" model.

## Version 0.7.0: released on 10 February 2022

+ Made `TrackEdit.cloneTrack()` into a generic method. (API change)
+ Finalized the `AnimationEdit` and `TrackEdit` classes. (API change)
+ Bugfix: `TrackEdit.reverse()` assumes a `MorphTrack`
+ Bugfix: `TrackEdit.reverse()` assumes a `MorphTrack`.
has a exactly one target
+ Added 7 public methods:
+ `AnimationEdit.convertToInPlace()`
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.1-SNAPSHOT";
return "master 0.7.1";
}
}
4 changes: 2 additions & 2 deletions common.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ apply plugin: 'java'
ext {
// current versions of libraries:
jme3Version = '3.5.0-stable'
wesVersion = '0.7.1-SNAPSHOT'
wesVersion = '0.7.1'
}

sourceCompatibility = JavaVersion.VERSION_1_7
Expand All @@ -29,6 +29,6 @@ tasks.withType(JavaExec) { // Java runtime options:
}

repositories {
//mavenLocal()
//mavenLocal() // to use local SNAPSHOTs of libraries
mavenCentral()
}

0 comments on commit 1277377

Please sign in to comment.