Skip to content

Commit

Permalink
bump version to 0.3.10 and update release-notes.md
Browse files Browse the repository at this point in the history
  • Loading branch information
stephengold committed Mar 10, 2019
1 parent 8b901eb commit f7fb7f5
Show file tree
Hide file tree
Showing 4 changed files with 11 additions and 6 deletions.
2 changes: 1 addition & 1 deletion WesLibrary/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ javadocJar { baseName project.ext.baseName }
sourcesJar { baseName project.ext.baseName }

dependencies {
compile "jme3utilities:jme3-utilities-heart:2.20.0"
compile 'jme3utilities:jme3-utilities-heart:2.20.0'
}

build.dependsOn('pom')
Expand Down
9 changes: 7 additions & 2 deletions WesLibrary/release-notes.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,10 @@
# release notes for the Wes library and related examples

## Version 0.3.10 released on TBD

+ Fix an infinite loop in TweenVectors.CentripetalSpline
+ Base on version 2.20 of the jme3-utilities-heart library.

## Version 0.3.9 released on 16 January 2019

+ Add the `FlashMobDemo` app and related resources.
Expand All @@ -11,13 +16,13 @@ to a new GitHub repo.

## Version 0.3.8 released on 28 December 2018

+ Base on version 2.17 of the heart library.
+ Base on version 2.17 of the jme3-utilities-heart library.
+ Target JME v3.2.2-beta1 .

## Version 0.3.7 released on 23 September 2018

+ Rename `WesVersion.getVersionShort()` to `versionShort()`. (API change)
+ Base on version 2.10 of the heart library.
+ Base on version 2.10 of the jme3-utilities-heart library.

## Version 0.3.6 released on 24 July 2018

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.9+1";
return "master 0.3.10";
}
}
4 changes: 2 additions & 2 deletions common.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -28,9 +28,9 @@ gradle.projectsEvaluated {
}

ext {
// current versions of libraries
// current versions of the libraries
jmonkeyengineVersion = '3.2.2-stable'
wesVersion = '0.3.9'
wesVersion = '0.3.10'
}

repositories {
Expand Down

0 comments on commit f7fb7f5

Please sign in to comment.