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 13, 2024
1 parent 9b12fa7 commit d87bf13
Show file tree
Hide file tree
Showing 4 changed files with 11 additions and 11 deletions.
2 changes: 1 addition & 1 deletion HeartLibrary/release-notes.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# release log for the Heart Library and related tests

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

+ Simplified the `VectorSet` interface. (API change)
+ Deleted the public `describeControls(Spatial, boolean)` method
Expand Down
2 changes: 1 addition & 1 deletion HeartLibrary/src/main/java/jme3utilities/Heart.java
Original file line number Diff line number Diff line change
Expand Up @@ -561,7 +561,7 @@ public static void setLoggingLevels(Level newLevel) {
* @return project name, library name, branch, and revision
*/
public static String version() {
return "Heart Heart master $Rev: 9.0.0 $";
return "Heart Heart master $Rev: 9.0.1-SNAPSHOT $";
}

/**
Expand Down
12 changes: 6 additions & 6 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -103,7 +103,7 @@ Add to the project’s "build.gradle" file:
mavenCentral()
}
dependencies {
implementation 'com.github.stephengold:Heart:8.8.0'
implementation 'com.github.stephengold:Heart:9.0.0'
}

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

### Ant-built projects
Expand All @@ -144,15 +144,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.8.0.jar" file.
+ Select the "Heart-9.0.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.8.0-javadoc.jar" file.
+ Select the "Heart-9.0.0-javadoc.jar" file.
+ Click on the "Open" button.
+ Click on the "Browse..." button to the right of "Sources:"
+ Select the "Heart-8.8.0-sources.jar" file.
+ Select the "Heart-9.0.0-sources.jar" file.
+ Click on the "Open" button again.
+ Click on the "OK" button to close the "Edit Jar Reference" dialog.
7. Click on the "OK" button to exit the "Project Properties" dialog.
Expand All @@ -178,7 +178,7 @@ Open the project's properties in the IDE (JME SDK or NetBeans):
+ using [Git]:
+ `git clone https://github.com/stephengold/Heart.git`
+ `cd Heart`
+ `git checkout -b latest 8.8.0`
+ `git checkout -b latest 9.0.0`
+ using a web browser:
+ browse to [the latest release][latest]
+ follow the "Source code (zip)" link
Expand Down
6 changes: 3 additions & 3 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -10,9 +10,9 @@ ext {
// current version of the JMonkeyEngine libraries:
jme3Version = '3.6.1-stable'

//heartSnapshot = '-SNAPSHOT' // for development builds
heartSnapshot = '' // for release builds
heartVersion = '9.0.0' + jmeTarget
heartSnapshot = '-SNAPSHOT' // for development builds
//heartSnapshot = '' // for release builds
heartVersion = '9.0.1' + jmeTarget
}

subprojects {
Expand Down

0 comments on commit d87bf13

Please sign in to comment.