Skip to content

Commit 1277377

Browse files
committed
bump version to 0.7.1 and update release-notes.md
1 parent 0dd397b commit 1277377

File tree

3 files changed

+12
-4
lines changed

3 files changed

+12
-4
lines changed

WesLibrary/release-notes.md

Lines changed: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,18 @@
11
# release log for the Wes library and related examples
22

3+
## Version 0.7.1: released on TBD
4+
5+
+ Bugfix: `TweenTransforms` uses the wrong cycle time
6+
to interpolate a `TransformTrack`.
7+
+ In WesExamples:
8+
+ Added a demo app for `AnimationEdit.convertToInPlace()`.
9+
+ Added Adi Barda's "ninja-fighter" model.
10+
311
## Version 0.7.0: released on 10 February 2022
412

513
+ Made `TrackEdit.cloneTrack()` into a generic method. (API change)
614
+ Finalized the `AnimationEdit` and `TrackEdit` classes. (API change)
7-
+ Bugfix: `TrackEdit.reverse()` assumes a `MorphTrack`
15+
+ Bugfix: `TrackEdit.reverse()` assumes a `MorphTrack`.
816
has a exactly one target
917
+ Added 7 public methods:
1018
+ `AnimationEdit.convertToInPlace()`

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.7.1-SNAPSHOT";
62+
return "master 0.7.1";
6363
}
6464
}

common.gradle

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ apply plugin: 'java'
55
ext {
66
// current versions of libraries:
77
jme3Version = '3.5.0-stable'
8-
wesVersion = '0.7.1-SNAPSHOT'
8+
wesVersion = '0.7.1'
99
}
1010

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

3131
repositories {
32-
//mavenLocal()
32+
//mavenLocal() // to use local SNAPSHOTs of libraries
3333
mavenCentral()
3434
}

0 commit comments

Comments
 (0)