Skip to content

Commit 0e4f161

Browse files
committed
bump library version to 7.2.0 and update release-notes.md
1 parent 2952c7b commit 0e4f161

4 files changed

Lines changed: 16 additions & 4 deletions

File tree

HeartLibrary/release-notes.md

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,17 @@
11
# release log for the Heart Library and related tests
22

3+
## Version 7.2.0 released on TBD
4+
5+
+ Bugfix: can't de-serialize a `SkeletonMesh`
6+
+ Added the `VectorVisualizer` class for debug visualization.
7+
+ Added the `translate()` method to the `MyMesh` class.
8+
+ Added the `velocity()` method to the `MyVector3f` class.
9+
+ Added the `getCollisionTree()` and `transformBuffer()` methods
10+
to the `MyBuffer` class.
11+
+ More detailed descriptions of controls used in the new animation system.
12+
+ Targeted jMonkeyEngine version 3.5.0-stable and Java 8+.
13+
+ Updated Gradle to v7.3.3
14+
315
## Version 7.1.0 released on 9 September 2021
416

517
+ Bugfix: `maxNumWeights` isn't initialized by `MyMesh.merge()`

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

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
Copyright (c) 2013-2021, Stephen Gold
2+
Copyright (c) 2013-2022, Stephen Gold
33
All rights reserved.
44
55
Redistribution and use in source and binary forms, with or without
@@ -419,7 +419,7 @@ public static void setLoggingLevels(Level newLevel) {
419419
* @return project name, library name, branch, and revision
420420
*/
421421
public static String version() {
422-
return "Heart Heart master $Rev: 7.1.1-SNAPSHOT $";
422+
return "Heart Heart master $Rev: 7.2.0 $";
423423
}
424424

425425
/**

common.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
apply plugin: 'java'
44

55
ext { // current versions of various libraries:
6-
heartVersion = '7.1.1-SNAPSHOT'
6+
heartVersion = '7.2.0'
77
jme3Version = '3.5.0-stable'
88
}
99

license.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
jme3utilities software packages except Icosphere.java Copyright (c) 2013-2021 Stephen Gold
1+
jme3utilities software packages except Icosphere.java Copyright (c) 2013-2022 Stephen Gold
22

33
All rights reserved.
44

0 commit comments

Comments
 (0)