Skip to content

Commit fedf062

Browse files
committed
post-release fixup
1 parent a7d02aa commit fedf062

File tree

4 files changed

+11
-11
lines changed

4 files changed

+11
-11
lines changed

HeartLibrary/release-notes.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# release log for the Heart Library and related tests
22

3-
## Version 9.1.0 released on TBD
3+
## Version 9.1.0 released on 22 June 2024
44

55
+ Bugfix: `NullPointerException` thrown in `MyControl.describe()`
66
+ Bugfix: string userdata is doubly escaped in scene-graph dumps

HeartLibrary/src/main/java/jme3utilities/Heart.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -560,7 +560,7 @@ public static void setLoggingLevels(Level newLevel) {
560560
* @return project name, library name, branch, and revision
561561
*/
562562
public static String version() {
563-
return "Heart Heart master $Rev: 9.1.0 $";
563+
return "Heart Heart master $Rev: 9.1.1-SNAPSHOT $";
564564
}
565565

566566
/**

README.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -103,7 +103,7 @@ Add to the project’s "build.gradle" file:
103103
mavenCentral()
104104
}
105105
dependencies {
106-
implementation 'com.github.stephengold:Heart:9.0.0'
106+
implementation 'com.github.stephengold:Heart:9.1.0'
107107
}
108108

109109
For some older versions of Gradle,
@@ -123,7 +123,7 @@ Add to the project’s "pom.xml" file:
123123
<dependency>
124124
<groupId>com.github.stephengold</groupId>
125125
<artifactId>Heart</artifactId>
126-
<version>9.0.0</version>
126+
<version>9.1.0</version>
127127
</dependency>
128128

129129
### Ant-built projects
@@ -144,15 +144,15 @@ Open the project's properties in the IDE (JME SDK or NetBeans):
144144
5. Add the Heart class jar:
145145
+ Click on the "Add JAR/Folder" button.
146146
+ Navigate to the download folder.
147-
+ Select the "Heart-9.0.0.jar" file.
147+
+ Select the "Heart-9.1.0.jar" file.
148148
+ Click on the "Open" button.
149149
6. (optional) Add jars for javadoc and sources:
150150
+ Click on the "Edit" button.
151151
+ Click on the "Browse..." button to the right of "Javadoc:"
152-
+ Select the "Heart-9.0.0-javadoc.jar" file.
152+
+ Select the "Heart-9.1.0-javadoc.jar" file.
153153
+ Click on the "Open" button.
154154
+ Click on the "Browse..." button to the right of "Sources:"
155-
+ Select the "Heart-9.0.0-sources.jar" file.
155+
+ Select the "Heart-9.1.0-sources.jar" file.
156156
+ Click on the "Open" button again.
157157
+ Click on the "OK" button to close the "Edit Jar Reference" dialog.
158158
7. Click on the "OK" button to exit the "Project Properties" dialog.
@@ -181,7 +181,7 @@ Open the project's properties in the IDE (JME SDK or NetBeans):
181181
+ using [Git]:
182182
+ `git clone https://github.com/stephengold/Heart.git`
183183
+ `cd Heart`
184-
+ `git checkout -b latest 9.0.0`
184+
+ `git checkout -b latest 9.1.0`
185185
+ using a web browser:
186186
+ browse to [the latest release][latest]
187187
+ follow the "Source code (zip)" link

build.gradle

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -6,9 +6,9 @@ plugins {
66

77
ext {
88
jmeTarget = '' // distinguish non-JME libraries built for specific JME releases
9-
//heartSnapshot = '-SNAPSHOT' // for development builds
10-
heartSnapshot = '' // for release builds
11-
heartVersion = '9.1.0' + jmeTarget + heartSnapshot
9+
heartSnapshot = '-SNAPSHOT' // for development builds
10+
//heartSnapshot = '' // for release builds
11+
heartVersion = '9.1.1' + jmeTarget + heartSnapshot
1212
}
1313

1414
subprojects {

0 commit comments

Comments
 (0)