Skip to content

Commit

Permalink
post-release fixup
Browse files Browse the repository at this point in the history
  • Loading branch information
stephengold committed Oct 9, 2023
1 parent bca0b97 commit 74409a0
Show file tree
Hide file tree
Showing 4 changed files with 11 additions and 11 deletions.
16 changes: 8 additions & 8 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@ Add to the project’s "build.gradle" file:
mavenCentral()
}
dependencies {
implementation 'com.github.stephengold:Wes:0.7.5'
implementation 'com.github.stephengold:Wes:0.8.0'
}

For some older versions of Gradle,
Expand All @@ -87,7 +87,7 @@ Add to the project’s "pom.xml" file:
<dependency>
<groupId>com.github.stephengold</groupId>
<artifactId>Wes</artifactId>
<version>0.7.5</version>
<version>0.8.0</version>
</dependency>

### Ant-built projects
Expand All @@ -96,7 +96,7 @@ For projects built using [Ant], download the Wes and [Heart]
libraries from GitHub:

+ https://github.com/stephengold/Wes/releases/tag/latest
+ https://github.com/stephengold/Heart/releases/tag/8.3.2
+ https://github.com/stephengold/Heart/releases/tag/8.7.0

You'll definitely want both class jars
and probably the "-sources" and "-javadoc" jars as well.
Expand All @@ -110,15 +110,15 @@ Open the project's properties in the IDE (JME SDK or NetBeans):
5. Add the [Heart] class jar:
+ Click on the "Add JAR/Folder" button.
+ Navigate to the download folder.
+ Select the "Heart-8.3.2.jar" file.
+ Select the "Heart-8.7.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 "Heart-8.3.2-javadoc.jar" file.
+ Select the "Heart-8.7.0-javadoc.jar" file.
+ Click on the "Open" button.
+ Click on the "Browse..." button to the right of "Sources:"
+ Select the "Heart-8.3.2-sources.jar" file.
+ Select the "Heart-8.7.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 All @@ -144,7 +144,7 @@ Open the project's properties in the IDE (JME SDK or NetBeans):
+ using Git:
+ `git clone https://github.com/stephengold/Wes.git`
+ `cd Wes`
+ `git checkout -b latest 0.7.5`
+ `git checkout -b latest 0.8.0`
+ using a web browser:
+ browse to [the latest release][latest]
+ follow the "Source code (zip)" link
Expand Down Expand Up @@ -180,7 +180,7 @@ Old releases (v0.2.1 through v0.3.8) can be downloaded from
[the Jme3-utilities Project](https://github.com/stephengold/jme3-utilities/releases).

Newer Maven artifacts (since v0.6.2) are available from
[MavenCentral](https://central.sonatype.com/artifact/com.github.stephengold/Wes/0.7.5/versions).
[MavenCentral](https://central.sonatype.com/artifact/com.github.stephengold/Wes/0.8.0/versions).

Old Maven artifacts (v0.4.8 thru v0.6.1) are available from JCenter.

Expand Down
2 changes: 1 addition & 1 deletion WesLibrary/release-notes.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# release log for the Wes library and related examples

## Version 0.8.0: released on TBD
## Version 0.8.0: released on 9 October 2023

+ Bugfix: 4 methods use wrong fill transform for the new animation system:
+ `TweenTransforms.interpolate()`
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.8.0";
return "master 0.8.1-SNAPSHOT";
}
}
2 changes: 1 addition & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ ext {

// current versions of libraries:
jme3Version = '3.6.1-stable'
wesVersion = '0.8.0' + jmeTarget
wesVersion = '0.8.1' + jmeTarget + '-SNAPSHOT'
}

subprojects {
Expand Down

0 comments on commit 74409a0

Please sign in to comment.