Skip to content

Commit

Permalink
post-release fixup
Browse files Browse the repository at this point in the history
  • Loading branch information
stephengold committed Jun 22, 2024
1 parent a7d02aa commit fedf062
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.1.0 released on TBD
## Version 9.1.0 released on 22 June 2024

+ Bugfix: `NullPointerException` thrown in `MyControl.describe()`
+ Bugfix: string userdata is doubly escaped in scene-graph dumps
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 @@ -560,7 +560,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.1.0 $";
return "Heart Heart master $Rev: 9.1.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:9.0.0'
implementation 'com.github.stephengold:Heart:9.1.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>9.0.0</version>
<version>9.1.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-9.0.0.jar" file.
+ Select the "Heart-9.1.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-9.0.0-javadoc.jar" file.
+ Select the "Heart-9.1.0-javadoc.jar" file.
+ Click on the "Open" button.
+ Click on the "Browse..." button to the right of "Sources:"
+ Select the "Heart-9.0.0-sources.jar" file.
+ Select the "Heart-9.1.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 Down Expand Up @@ -181,7 +181,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 9.0.0`
+ `git checkout -b latest 9.1.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 @@ -6,9 +6,9 @@ plugins {

ext {
jmeTarget = '' // distinguish non-JME libraries built for specific JME releases
//heartSnapshot = '-SNAPSHOT' // for development builds
heartSnapshot = '' // for release builds
heartVersion = '9.1.0' + jmeTarget + heartSnapshot
heartSnapshot = '-SNAPSHOT' // for development builds
//heartSnapshot = '' // for release builds
heartVersion = '9.1.1' + jmeTarget + heartSnapshot
}

subprojects {
Expand Down

0 comments on commit fedf062

Please sign in to comment.