From e38f6313dbd1d4844f66360f35d23ba7c0fe5444 Mon Sep 17 00:00:00 2001 From: Stephen Gold Date: Fri, 19 Nov 2021 10:36:36 -0800 Subject: [PATCH] bump version to 4.5.0 and update release-notes.md --- MinieLibrary/release-notes.md | 16 ++++++++++++++++ .../java/jme3utilities/minie/MinieVersion.java | 2 +- common.gradle | 2 +- 3 files changed, 18 insertions(+), 2 deletions(-) diff --git a/MinieLibrary/release-notes.md b/MinieLibrary/release-notes.md index 6e79fbbf3..75580b371 100644 --- a/MinieLibrary/release-notes.md +++ b/MinieLibrary/release-notes.md @@ -1,5 +1,21 @@ # Release log for the Minie library, DacWizard, and MinieExamples +## Version 4.5.0 released on TBD + + + Cached the methods that free native objects, to improve performance. + + Added the `setPivotInB()` method to the `Anchor` class. + + Added a mesh customization API to the `DebugShapeFactory` class, + to support (for example) debug materials that need barycentric coordinates. + + Publicized the `worldMax()` and `worldMin()` methods + in the `BulletAppState` class. + + Improvements to examples: + + Solved `UnsatisfiedLinkError` crashes in 5 apps. + + Added the `TestIssue18GImpact` app. + + Addressed JME issue 1630 in `TestBetterCharacter`. + + Updated the native libraries to v12.5.0 of Libbulletjme, + which includes contact filtering for GImpact shapes. + + Built using Gradle v7.3 . + ## Version 4.5.0-test1 released on 25 October 2021 + Bugfix: invalid contact points for heightfield/mesh shapes (issue #18) diff --git a/MinieLibrary/src/main/java/jme3utilities/minie/MinieVersion.java b/MinieLibrary/src/main/java/jme3utilities/minie/MinieVersion.java index 7aeb6ae5b..99770106b 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.5.0-SNAPSHOT"; + return "master 4.5.0"; } } diff --git a/common.gradle b/common.gradle index 879e37a01..71cbb701c 100644 --- a/common.gradle +++ b/common.gradle @@ -4,7 +4,7 @@ apply plugin: 'java' ext { jmeTarget = '' - minieSnapshot = '-SNAPSHOT' + minieSnapshot = '' // current versions of various libraries: heartVersion = '7.1.0' + jmeTarget