Skip to content

Commit

Permalink
post-release fixup
Browse files Browse the repository at this point in the history
  • Loading branch information
stephengold committed Feb 14, 2024
1 parent 9c4ae39 commit 6dd2cb9
Show file tree
Hide file tree
Showing 6 changed files with 14 additions and 14 deletions.
2 changes: 1 addition & 1 deletion AcorusLibrary/release-notes.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# release log for the Acorus library and related examples

## Version 2.0.0 released on TBD
## Version 2.0.0 released on 13 February 2024

+ Moved `DsUtils` to the Heart Library. (API change)
+ Based on version 9.0.0 of the Heart Library.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -61,6 +61,6 @@ private UiVersion() {
* @return the branch name and revision string (not null, not empty)
*/
public static String versionShort() {
return "master 2.0.0";
return "master 2.0.1-SNAPSHOT";
}
}
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -86,7 +86,7 @@ Old releases (through v0.9.6) can be downloaded from
[the Jme3-utilities Project](https://github.com/stephengold/jme3-utilities/releases).

Newer Maven artifacts (since v0.9.7) are available from
[MavenCentral](https://central.sonatype.com/artifact/com.github.stephengold/Acorus/1.1.1/versions).
[MavenCentral](https://central.sonatype.com/artifact/com.github.stephengold/Acorus/2.0.0/versions).

Old Maven artifacts (v0.9.2 through v0.9.6) are available from
[MavenCentral jme3-utilities-ui](https://central.sonatype.com/artifact/com.github.stephengold/jme3-utilities-ui/0.9.6/versions).
Expand Down
6 changes: 3 additions & 3 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -13,9 +13,9 @@ ext {
// module coordinates of external dependencies:
heartCoordinates = 'com.github.stephengold:Heart:9.0.0' + jmeTarget

//acorusSnapshot = '-SNAPSHOT' // for development builds
acorusSnapshot = '' // for release builds
acorusVersion = '2.0.0' + jmeTarget
acorusSnapshot = '-SNAPSHOT' // for development builds
//acorusSnapshot = '' // for release builds
acorusVersion = '2.0.1' + jmeTarget
}

subprojects {
Expand Down
14 changes: 7 additions & 7 deletions docs/en/modules/ROOT/pages/add.adoc
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ repositories {
mavenCentral()
}
dependencies {
implementation 'com.github.stephengold:Acorus:1.1.1'
implementation 'com.github.stephengold:Acorus:2.0.0'
}
----

Expand All @@ -62,7 +62,7 @@ Add to the project's "pom.xml" file:
<dependency>
<groupId>com.github.stephengold</groupId>
<artifactId>Acorus</artifactId>
<version>1.1.1</version>
<version>2.0.0</version>
</dependency>
----

Expand All @@ -75,7 +75,7 @@ Download the {Project} library and its dependencies
from GitHub and/or Maven Central:

* https://github.com/stephengold/Acorus/releases/latest
* https://github.com/stephengold/Heart/releases/tag/8.8.0
* https://github.com/stephengold/Heart/releases/tag/9.0.0
* https://repo1.maven.org/maven2/org/jmonkeyengine/jme3-core/3.6.1-stable/
* https://repo1.maven.org/maven2/org/jmonkeyengine/jme3-desktop/3.6.1-stable/

Expand All @@ -88,18 +88,18 @@ Open the project's properties in the IDE (JME SDK or NetBeans):
. Select menu:Properties[] to open the "Project Properties" dialog.
. Under "Categories:", click on btn:[Libraries].
. Click on the btn:[Compile] tab.
. Add the Heart class JAR:
. Add the Acorus class JAR:
.. Click on the btn:[Add JAR/Folder] button.
.. Navigate to the download directory.
.. Select the "Acorus-1.1.1.jar" file.
.. Select the "Acorus-2.0.0.jar" file.
.. Click on the btn:[Open] button.
. (optional) Add JARs for javadoc and sources:
.. Click on the btn:[Edit] button.
.. Click on the btn:[Browse...] button to the right of "Javadoc:"
.. Select the "Acorus-1.1.1-javadoc.jar" file.
.. Select the "Acorus-2.0.0-javadoc.jar" file.
.. Click on the btn:[Open] button.
.. Click on the btn:[Browse...] button to the right of "Sources:"
.. Select the "Acorus-1.1.1-sources.jar" file.
.. Select the "Acorus-2.0.0-sources.jar" file.
.. Click on the btn:[Open] button button again.
.. Click on the btn:[OK] button to close the "Edit Jar Reference" dialog.
. Add the other JVM libraries in a similar manner.
Expand Down
2 changes: 1 addition & 1 deletion docs/en/modules/ROOT/pages/build.adoc
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ Here's the recommended procedure:
.. using Git:
... `git clone https://github.com/stephengold/Acorus.git`
... `cd Acorus`
... `git checkout -b latest 1.1.1`
... `git checkout -b latest 2.0.0`
.. using a web browser:
... browse to https://github.com/stephengold/Acorus/releases/latest
... follow the "Source code (zip)" link
Expand Down

0 comments on commit 6dd2cb9

Please sign in to comment.