Skip to content

Commit

Permalink
bump version to 0.3.11 and update release-notes.md
Browse files Browse the repository at this point in the history
  • Loading branch information
stephengold committed Mar 12, 2019
1 parent 21cbb8c commit 9ce8950
Show file tree
Hide file tree
Showing 4 changed files with 15 additions and 9 deletions.
14 changes: 7 additions & 7 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ The source code is compatible with JDK 7.

## History

Since January 2019, the Wes Project has been an independent project at
Since January 2019, the Wes Project has been a separate project at
[GitHub][wes].

From September 2017 to January 2019, Wes was a sub-project of
Expand Down Expand Up @@ -146,16 +146,16 @@ repository location:
jcenter()
}
dependencies {
compile 'jme3utilities:Wes:0.3.10'
compile 'jme3utilities:Wes:0.3.11'
}

#### For Ant projects

For project built using Ant, download the Wes and jme3-utilities-heart
libraries from GitHub:

+ https://github.com/stephengold/Wes/releases/tag/0.3.10
+ https://github.com/stephengold/jme3-utilities/releases/tag/heart-2.20.0
+ https://github.com/stephengold/Wes/releases/tag/0.3.11
+ https://github.com/stephengold/jme3-utilities/releases/tag/heart-2.22.0

You'll want both class JARs
and probably the `-sources` and `-javadoc` JARs as well.
Expand All @@ -171,15 +171,15 @@ Open the project's properties in the IDE (JME 3.2 SDK or NetBeans 8.2):
+ Navigate to the "jme3-utilities" project folder.
+ Open the "heart" sub-project folder.
+ Navigate to the "build/libs" folder.
+ Select the "jme3-utilities-heart-2.20.0.jar" file.
+ Select the "jme3-utilities-heart-2.22.0.jar" file.
+ Click on the "Open" button.
6. (optional) Add JARs for javadoc and sources:
+ Click on the "Edit" button.
+ Click on the "Browse..." button to the right of "Javadoc:"
+ Select the "jme3-utilities-heart-2.20.0-javadoc.jar" file.
+ Select the "jme3-utilities-heart-2.22.0-javadoc.jar" file.
+ Click on the "Open" button.
+ Click on the "Browse..." button to the right of "Sources:"
+ Select the "jme3-utilities-heart-2.20.0-sources.jar" file.
+ Select the "jme3-utilities-heart-2.22.0-sources.jar" file.
+ Click on the "Open" button again.
+ Click on the "OK" button to close the "Edit Jar Reference" dialog.
7. Similarly, add the `Wes` JAR(s).
Expand Down
4 changes: 4 additions & 0 deletions WesLibrary/release-notes.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
# release notes for the Wes library and related examples

## Version 0.3.11 released on TBD

Base on version 2.22 of the jme3-utilities-heart library.

## Version 0.3.10 released on 9 March 2019

+ Fix an infinite loop in `TweenVectors.CentripetalSpline`
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.10+1";
return "master 0.3.11";
}
}
4 changes: 3 additions & 1 deletion common.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,8 @@ gradle.projectsEvaluated {
classpath sourceSets.main.runtimeClasspath
//doFirst { println commandLine }
enableAssertions true
//jvmArgs '-verbosegc'
//jvmArgs '-Xms512m', '-Xmx512m'
jvmArgs '-XX:+UseConcMarkSweepGC'
//jvmArgs '-XX:+UseG1GC', '-XX:MaxGCPauseMillis=10'
}
Expand All @@ -30,7 +32,7 @@ gradle.projectsEvaluated {
ext {
// current versions of the libraries
jmonkeyengineVersion = '3.2.2-stable'
wesVersion = '0.3.10'
wesVersion = '0.3.11'
}

repositories {
Expand Down

0 comments on commit 9ce8950

Please sign in to comment.