diff --git a/MinieLibrary/release-notes.md b/MinieLibrary/release-notes.md index e83c11be3..78b535400 100644 --- a/MinieLibrary/release-notes.md +++ b/MinieLibrary/release-notes.md @@ -1,5 +1,22 @@ # Release log for the Minie library, DacWizard, and MinieExamples +## Version 4.5.0-test1 released on TBD + + + Bugfix: invalid contact points for heightfield/mesh shapes (issue #18) + + Added a flag to disable contact filtering on a per-shape basis. + + Added accessors to the `CollisionSpace` class for the collision dispatcher's + "deterministic" option. + + Made all native physics objects `Comparable` (for use in collections). + + Improvements to examples: + + Added 2 tutorial apps for character physics: + `HelloWalkOtoBcc` and `HelloWalkOtoCc`. + + Added 2 tests for issue #18: + `TestIssue18Heightfield` and `TestIssue18Mesh`. + + Made some of the tuturial apps more comparable. + + Created a merged mesh shape for the table in `PoolDemo` (more efficient). + + Reduced the camera zoom speed in `PoolDemo` (to avoid overshooting). + + Updated the native libraries to v12.4.1 of Libbulletjme. + ## Version 4.4.0 released on 1 October 2021 + Added 10 double-precision accessors and created an API dependency diff --git a/MinieLibrary/src/main/java/jme3utilities/minie/MinieVersion.java b/MinieLibrary/src/main/java/jme3utilities/minie/MinieVersion.java index a9b809fff..07eb62100 100644 --- a/MinieLibrary/src/main/java/jme3utilities/minie/MinieVersion.java +++ b/MinieLibrary/src/main/java/jme3utilities/minie/MinieVersion.java @@ -59,6 +59,6 @@ private MinieVersion() { * @return the branch and revision string (not null, not empty) */ public static String versionShort() { - return "master 4.4.1-SNAPSHOT"; + return "master 4.5.0-test1"; } } diff --git a/common.gradle b/common.gradle index 01180b360..cd9aaf5c1 100644 --- a/common.gradle +++ b/common.gradle @@ -4,14 +4,14 @@ apply plugin: 'java' ext { jmeTarget = '' - minieSnapshot = '-SNAPSHOT' + minieSnapshot = '' // current versions of various libraries: heartVersion = '7.1.0' + jmeTarget jme3utilitiesuiVersion = '0.9.5' + jmeTarget jmonkeyengineVersion = '3.4.0-stable' junitVersion = '4.13.2' - minieVersion = '4.4.1' + minieVersion = '4.5.0-test1' wesVersion = '0.6.7' + jmeTarget }