Skip to content

Commit

Permalink
bump library version to 9.1.0 and update release-notes.md
Browse files Browse the repository at this point in the history
  • Loading branch information
stephengold committed Jun 22, 2024
1 parent f00c058 commit a7d02aa
Show file tree
Hide file tree
Showing 3 changed files with 13 additions and 4 deletions.
9 changes: 9 additions & 0 deletions HeartLibrary/release-notes.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,14 @@
# release log for the Heart Library and related tests

## Version 9.1.0 released on TBD

+ Bugfix: `NullPointerException` thrown in `MyControl.describe()`
+ Bugfix: string userdata is doubly escaped in scene-graph dumps
+ Added the `CapsuleMesh` class to the library.
+ Added the `trianglesToLines(IndexBuffer, int)` method to the `MyMesh` class.
+ Added the `TrianglesToLines` app to the examples.
+ Updated Gradle to v8.8

## Version 9.0.0 released on 13 February 2024

+ Simplified the `VectorSet` interface. (API change)
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.0.1-SNAPSHOT $";
return "Heart Heart master $Rev: 9.1.0 $";
}

/**
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.0.1' + jmeTarget + heartSnapshot
//heartSnapshot = '-SNAPSHOT' // for development builds
heartSnapshot = '' // for release builds
heartVersion = '9.1.0' + jmeTarget + heartSnapshot
}

subprojects {
Expand Down

0 comments on commit a7d02aa

Please sign in to comment.