Skip to content

Commit

Permalink
Minie library: bump version to 0.2.10 and update release-notes.md
Browse files Browse the repository at this point in the history
  • Loading branch information
stephengold committed Sep 12, 2018
1 parent 2eccfa8 commit 480a3c7
Show file tree
Hide file tree
Showing 4 changed files with 20 additions and 8 deletions.
12 changes: 6 additions & 6 deletions Minie/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -17,15 +17,15 @@ 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.
runtime "org.jmonkeyengine:jme3-desktop:$jmonkeyengineVersion"
runtime "org.jmonkeyengine:jme3-lwjgl:$jmonkeyengineVersion"
compile "org.jmonkeyengine:jme3-plugins:$jmonkeyengineVersion"
runtime 'org.jmonkeyengine:jme3-testdata:3.1.0-stable'
//runtime "org.jmonkeyengine:jme3-desktop:$jmonkeyengineVersion"
//runtime "org.jmonkeyengine:jme3-lwjgl:$jmonkeyengineVersion"
//compile "org.jmonkeyengine:jme3-plugins:$jmonkeyengineVersion"
//runtime 'org.jmonkeyengine:jme3-testdata:3.1.0-stable'
}

task pom {
Expand Down
12 changes: 12 additions & 0 deletions Minie/release-notes.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,17 @@
# release notes for the Minie library and related tests

## Version 0.2.10 released on TBD

+ Fixed JME issue #898.
+ Require collision margin > 0.
+ Changed default collision margin from 0 to 0.04.
+ Disabled setMargin() for SphereCollisionShape.
+ Don't allow dynamic bodies to have heightfield or plane shapes.
+ Publicized loggers
+ Added massForStatic constant in PhysicsRigidBody.
+ Added 2 tests.
+ Privatized the HeightfieldCollisionShape.createShape() method.

## Version 0.2.9 released on 9 September 2018

+ Removed PhysicsCollisionEventFactory.
Expand Down
2 changes: 1 addition & 1 deletion Minie/src/main/java/jme3utilities/minie/MinieVersion.java
Original file line number Diff line number Diff line change
Expand Up @@ -59,6 +59,6 @@ private MinieVersion() {
* @return branch and revision (not null, not empty)
*/
public static String versionShort() {
return "master 0.2.9+1";
return "master 0.2.10";
}
}
2 changes: 1 addition & 1 deletion common.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ ext {
jme3utilitiesuiVersion = '0.6.4'
jme3utilitiesxVersion = '0.2.4'
jmonkeyengineVersion = '3.2.1-stable'
minieVersion = '0.2.9'
minieVersion = '0.2.10'
skycontrolVersion = '0.9.13'
wesVersion = '0.3.6'
}
Expand Down

0 comments on commit 480a3c7

Please sign in to comment.