diff --git a/Minie/build.gradle b/Minie/build.gradle index 7fb3c7914..c095c77d0 100644 --- a/Minie/build.gradle +++ b/Minie/build.gradle @@ -17,8 +17,8 @@ sourcesJar { baseName project.ext.baseName } dependencies { runtime "org.jmonkeyengine:jme3-bullet-native:$jmonkeyengineVersion" - //compile "jme3utilities:jme3-utilities-debug:$jme3utilitiesdebugVersion" - compile project(':debug') + compile "jme3utilities:jme3-utilities-debug:$jme3utilitiesdebugVersion" + //compile project(':debug') // The following dependencies are for testing and should be commented // out when building a release. diff --git a/Minie/release-notes.md b/Minie/release-notes.md index 97863ad86..1d5857fcb 100644 --- a/Minie/release-notes.md +++ b/Minie/release-notes.md @@ -1,5 +1,14 @@ # release notes for the Minie library and related tests +## Version 0.2.7 released on TBD + + + Don't setLocalScale() on spatials controlled by debug controls; this is + related to JME issue #887. + + Handle ignoreTransforms in GhostControl and RigidBodyControl. + + Describe rigid bodies and RigidBodyControls similarly. + + Describe shape scaling and spatial scaling similarly. + + Describe the half extents of box shapes. + ## Version 0.2.6 released on 31 August 2018 + Fixed JME issues 883 and 887. diff --git a/Minie/src/main/java/jme3utilities/minie/MinieVersion.java b/Minie/src/main/java/jme3utilities/minie/MinieVersion.java index 5f2097edf..1bbe66906 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.6+1"; + return "master 0.2.7"; } } diff --git a/common.gradle b/common.gradle index 27239c876..0e434438a 100644 --- a/common.gradle +++ b/common.gradle @@ -27,7 +27,7 @@ ext { jme3utilitiesuiVersion = '0.6.4' jme3utilitiesxVersion = '0.2.4' jmonkeyengineVersion = '3.2.1-stable' - minieVersion = '0.2.6' + minieVersion = '0.2.7' skycontrolVersion = '0.9.13' wesVersion = '0.3.6' }