Skip to content

Commit 442e235

Browse files
committed
bump version to 5.0.0for32 and update release-notes.md
1 parent 43b383d commit 442e235

File tree

3 files changed

+25
-3
lines changed

3 files changed

+25
-3
lines changed

HeartLibrary/release-notes.md

Lines changed: 23 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,27 @@
11
# release notes for the Heart Library and related tests
22

3+
## Version 5.0.0for32 released on TBD
4+
5+
+ Changed the Maven groupId from `jme3utilities` to `com.github.stephengold`.
6+
+ Changed the Maven artifactId from `jme3-utilities-heart` to `Heart`.
7+
+ Deleted the deprecated `Misc` class. (API change!)
8+
+ Deleted the deprecated `copyLineColor()` method
9+
from the `BoundsVisualizer` class. (API change!)
10+
+ Deleted the deprecated `isSorted(List<Comparable>)` method
11+
from the `MyMath` class. (API change!)
12+
+ Added 4 methods to the `VectorSet` interface: (API changes!)
13+
+ `add(float, float, float)`
14+
+ `contains(float, float, float)`
15+
+ `toFloatArray()`
16+
+ `toVectorArray()`
17+
+ Added an option to the `VectorSetUsingBuffer` constructor to use wrapped
18+
arrays instead of a direct buffers. (API change!)
19+
+ Generalized the `hypotenuse()`, `max()`, `min()`, and `sumOfSquares()`
20+
methods in the `MyMath` class to accept
21+
variable numbers of arguments. (API changes!)
22+
+ Added a `normalizeLocal()` method to the `MyQuaternion` class.
23+
+ When dumping an `IndexBuffer`, organize the indices into lines or triangles.
24+
325
## Version 4.5.0for32 released on 1 February 2020
426

527
+ Bugfix: `Icosphere` lacked a no-arg constructor.
@@ -581,4 +603,4 @@ Added `localToWorld(Quaternion)` and
581603
+ Removed the Indices class
582604
+ Removed findMinMaxHeights() and getMaxY() from MySpatial
583605
+ Created jme3-utilities-heart library by splitting off packages from the
584-
SkyControl and jme3-utilities-x libraries
606+
SkyControl and jme3-utilities-x libraries

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -362,7 +362,7 @@ public static void setLoggingLevels(Level newLevel) {
362362
* @return project name, library name, branch, and revision
363363
*/
364364
public static String version() {
365-
return "Heart Heart for_jME3.2 $Rev: 4.5.0for32+1 $";
365+
return "Heart Heart for_jME3.2 $Rev: 5.0.0for32 $";
366366
}
367367

368368
/**

common.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ gradle.projectsEvaluated {
2929
}
3030

3131
ext { // current versions of various libraries
32-
heartVersion = '4.5.0for32'
32+
heartVersion = '5.0.0for32'
3333
jme3utilitiesuiVersion = '0.8.0for32'
3434
jmonkeyengineVersion = '3.2.4-stable'
3535
}

0 commit comments

Comments
 (0)