Skip to content

Commit

Permalink
bump version to 0.4.0 and update release-notes.md
Browse files Browse the repository at this point in the history
  • Loading branch information
stephengold committed Apr 19, 2019
1 parent 5b39eca commit 7ac0aa6
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 7 deletions.
8 changes: 7 additions & 1 deletion WesLibrary/release-notes.md
Original file line number Diff line number Diff line change
@@ -1,9 +1,15 @@
# release notes for the Wes library and related examples

## Version 0.4.0 released on TBD

+ Moved 4 methods from `TrackEdit` to a new `AnimationEdit` class. (API change)
+ Added a new `reverseAnimation()` method to the `AnimationEdit` class.
+ Added a `ReverseAnimation` example.

## Version 0.3.12 released on 15 April 2019

+ Add method to apply a `Pose` to a `Skeleton`.
+ Add Oto and Puppet to the FlashMobDemo app.
+ Add Oto and Puppet to the `FlashMobDemo` example.
+ Re-implement `Pose.preOrderIndices()`.
+ Base on version 2.25 of the jme3-utilities-heart library.
+ Target JME 3.2.3-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.3.12+1";
return "master 0.4.0";
}
}
9 changes: 4 additions & 5 deletions common.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ gradle.projectsEvaluated {
ext {
// current versions of the libraries
jmonkeyengineVersion = '3.2.3-stable'
wesVersion = '0.3.12'
wesVersion = '0.4.0'
}

repositories {
Expand All @@ -42,18 +42,17 @@ repositories {
jcenter()
}

// custom tasks for creating source/javadoc jars
task sourcesJar(type: Jar, dependsOn: classes, description: 'Create a jar of source files.') {
classifier = 'sources'
from sourceSets.main.allJava
}

task javadocJar(type: Jar, dependsOn: javadoc, description: 'Create a jar of javadoc.') {
classifier = 'javadoc'
from javadoc.destinationDir
}

// add javadoc/source jar tasks as artifacts
artifacts {
archives jar
archives sourcesJar
archives javadocJar
archives jar, sourcesJar, javadocJar
}

0 comments on commit 7ac0aa6

Please sign in to comment.