Skip to content

Commit

Permalink
bump library version to 8.6.0 and update release-notes.md
Browse files Browse the repository at this point in the history
  • Loading branch information
stephengold committed Jun 2, 2023
1 parent 04bedc4 commit 9160c24
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 2 deletions.
10 changes: 10 additions & 0 deletions HeartLibrary/release-notes.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,15 @@
# release log for the Heart Library and related tests

## Version 8.6.0 released on TBD

+ Added 4 new methods:
+ `MyMath.transform()`
+ `MyMath.transformInverse()` for a `Vector3f`
+ `MyQuaternion.rotateInverse()`
+ `Validate.standardAngle()`
+ When normalizing a `Quaternion` or `Vector3f`, bypass division if the norm is
approximately equal to 1.

## Version 8.5.0 released on 29 May 2023

Added 2 new methods:
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 @@ -531,7 +531,7 @@ public static void setLoggingLevels(Level newLevel) {
* @return project name, library name, branch, and revision
*/
public static String version() {
return "Heart Heart master $Rev: 8.5.1-SNAPSHOT $";
return "Heart Heart master $Rev: 8.6.0 $";
}

/**
Expand Down
2 changes: 1 addition & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ plugins {
ext {
// current versions of libraries:
jmeTarget = '' // distinguish non-JME libraries built for specific JME releases
heartVersion = '8.5.1' + jmeTarget + '-SNAPSHOT'
heartVersion = '8.6.0' + jmeTarget
jme3Version = '3.6.0-stable'
}

Expand Down

0 comments on commit 9160c24

Please sign in to comment.