From 5c77bfff67a291bcc997a670cad5090a9044c8d9 Mon Sep 17 00:00:00 2001 From: Stephen Gold Date: Fri, 24 Aug 2018 14:52:40 -0700 Subject: [PATCH] Minie library: bump version to 0.2.5 and update release-notes.md --- Minie/build.gradle | 4 ++-- Minie/release-notes.md | 20 +++++++++++++++---- .../jme3utilities/minie/MinieVersion.java | 2 +- common.gradle | 2 +- 4 files changed, 20 insertions(+), 8 deletions(-) diff --git a/Minie/build.gradle b/Minie/build.gradle index ed692ee03..fe333921c 100644 --- a/Minie/build.gradle +++ b/Minie/build.gradle @@ -15,8 +15,8 @@ javadocJar { baseName project.ext.baseName } sourcesJar { baseName project.ext.baseName } dependencies { - //compile "jme3utilities:jme3-utilities-debug:$jme3utilitiesdebugVersion" - compile project(':debug') + compile "jme3utilities:jme3-utilities-debug:$jme3utilitiesdebugVersion" + //compile project(':debug') } task pom { diff --git a/Minie/release-notes.md b/Minie/release-notes.md index d0ab6fc85..2a4a7bcb3 100644 --- a/Minie/release-notes.md +++ b/Minie/release-notes.md @@ -1,9 +1,21 @@ # release notes for the Minie library and related tests -## Version 0.2.4 released 22 August 2018 - - + Rename MinieVersion.getVersionShort() to versionShort(). - + Use MyAsset to create debug materials. +## Version 0.2.5 released on TBD + + + Bugfix: PhysicsDumper prints incorrect number of vehicles. + + Bugfix for JME issue #867 contributed by Riccardo Balbo. + + Privatized numerous protected fields. + + Removed 3 PhysicsSpace constructors. + + Enhanced PhysicsDumper to handle app states and print the joint list and + (non-identity) orientation for each rigid body. + + Added BulletAppState.getBroadphaseType(). + + Added validation of method arguments. + + Changed BulletAppState.setWorldMax() and .setWorldMin() to avoid aliasing. + +## Version 0.2.4 released on 22 August 2018 + + + Renamed MinieVersion.getVersionShort() to versionShort(). + + Used MyAsset to create debug materials. + In BulletDebugAppState, only render viewports that are enabled. + Based on version 2.7 of the jme3-utilities-heart library. diff --git a/Minie/src/main/java/jme3utilities/minie/MinieVersion.java b/Minie/src/main/java/jme3utilities/minie/MinieVersion.java index 964b33fca..b1cfd3108 100644 --- a/Minie/src/main/java/jme3utilities/minie/MinieVersion.java +++ b/Minie/src/main/java/jme3utilities/minie/MinieVersion.java @@ -59,6 +59,6 @@ private MinieVersion() { * @return branch and revision (not null, not empty) */ public static String versionShort() { - return "master 0.2.4+1"; + return "master 0.2.5"; } } diff --git a/common.gradle b/common.gradle index cd6a05cc2..e283fada2 100644 --- a/common.gradle +++ b/common.gradle @@ -25,7 +25,7 @@ ext { jme3utilitiesuiVersion = '0.6.4' jme3utilitiesxVersion = '0.2.4' jmonkeyengineVersion = '3.2.1-stable' - minieVersion = '0.2.4' + minieVersion = '0.2.5' skycontrolVersion = '0.9.13' wesVersion = '0.3.6' }