Skip to content

Commit f0ef1da

Browse files
committed
bump version to 6.3.0 and update release-notes.md
1 parent 0897b87 commit f0ef1da

3 files changed

Lines changed: 27 additions & 4 deletions

File tree

HeartLibrary/release-notes.md

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

3+
## Version 6.3.0 released on TBD
4+
5+
+ Bugfix: `IllegalArgumentException` while expanding a `Mesh`.
6+
+ Extended `Heart.writeImage()` to write BMPs, GIFs, and JPEGs.
7+
+ Added an option to `Validate` to configure the type of exception
8+
thrown for a null argument.
9+
+ Modified `PointVisualizer` to configure its render bucket
10+
and disable shadows.
11+
+ Reduced argument validation when assertions are disabled.
12+
+ Added to the library:
13+
+ `Dumper.dump()` methods for a `Camera`
14+
+ `MyAnimation.findKeyframeIndex()` for a `TransformTrack`
15+
+ `MyCamera.fovX()`
16+
+ `MyCamera.xDegrees()`
17+
+ `MyCamera.xTangent()`
18+
+ `MyMath.clamp()` for ints
19+
+ `MyMath.easeInQuartic()`
20+
+ `MyMath.easeOutQuartic()`
21+
+ `MyString.findIndex()`
22+
+ a `Vector3i` class
23+
+ Publicized many loggers.
24+
+ Upgraded Gradle to v6.8.1
25+
326
## Version 6.2.0 released on 23 November 2020
427

528
+ Added a `SignalTracker` class to the library.
@@ -18,7 +41,7 @@
1841
+ disabled audio rendering
1942
+ upgraded the jme3-utilities-ui library to v0.9.0
2043
+ Upgraded Gradle to v6.7
21-
+ Upgrade JUnit to v4.13.1
44+
+ Upgraded JUnit to v4.13.1
2245

2346
## Version 6.0.0 released on 15 August 2020
2447

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-2020, Stephen Gold
2+
Copyright (c) 2013-2021, Stephen Gold
33
All rights reserved.
44
55
Redistribution and use in source and binary forms, with or without
@@ -407,7 +407,7 @@ public static void setLoggingLevels(Level newLevel) {
407407
* @return project name, library name, branch, and revision
408408
*/
409409
public static String version() {
410-
return "Heart Heart master $Rev: 6.2.0-SNAPSHOT $";
410+
return "Heart Heart master $Rev: 6.3.0 $";
411411
}
412412

413413
/**

common.gradle

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

3131
ext {
3232
// current versions of various libraries
33-
heartVersion = '6.2.0-SNAPSHOT'
33+
heartVersion = '6.3.0'
3434
jmonkeyengineVersion = '3.3.2-stable'
3535
}
3636

0 commit comments

Comments
 (0)