Skip to content

Commit

Permalink
bump version to 0.8.1 and update release-notes.md
Browse files Browse the repository at this point in the history
  • Loading branch information
stephengold committed Apr 28, 2019
1 parent de68ed0 commit b4036a5
Show file tree
Hide file tree
Showing 3 changed files with 31 additions and 4 deletions.
29 changes: 28 additions & 1 deletion MinieLibrary/release-notes.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,31 @@
# release notes for the Minie library and related examples
# release notes for the Minie library, DacWizard, and MinieExamples

## Version 0.8.1 released on TBD

+ API changes:
+ Privatized 2 protected fields in the `BulletDebugAppState` class.
+ Privatized 7 protected fields in the `RigidBodyControl` class.
+ Privatized 4 protected fields in the `VehicleControl` class.
+ Renamed the `MyObject` class to `MyPco`.
+ Removed the `BubbleControl`, `SimpleGhostControl`,
and `SimpleSolidControl` classes.
+ De-publicized the `BoundingBoxDebugControl` constructor.
+ Removed the `setPivot()` method from the `SixDofJoint` class.
+ Changed the semantics of the `addAll()` and `removeAll()` methods in the
`PhysicsSpace` class; they no longer attempt to add/remove physics joints.
+ Added a swept-sphere visualization feature.
+ Added assertions to catch attempts to read the angular/linear velocities
of non-dynamic rigid bodies.
+ Added methods to calculate the kinetic/mechanical energy of rigid body
or a ragdoll.
+ Improved thread safety.
+ Added command-line options to DacWizard: --openGL3, --forceDialog, --verbose
+ Added a `getAngularVelocityLocal()` method to `PhysicsRigidBody`.
+ Moved the `FilterAll` class from MinieExamples into the library.
+ Added `getFrameTransform()` methods for cone, hinge, 6dof, and slider joints.
+ Updated the native libraries to version 1.0.50 of `Libbulletjme`.
+ Upgraded to Gradle v5.3.1 .
+ Based on version 2.26 of the `jme3-utilities-heart` library.

## Version 0.8.0 released on 15 April 2019

Expand Down
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.8.0+1";
return "master 0.8.1";
}
}
4 changes: 2 additions & 2 deletions common.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ gradle.projectsEvaluated {
classpath sourceSets.main.runtimeClasspath
//doFirst { println commandLine }
enableAssertions true
//jvmArgs '-verbosegc'
//jvmArgs '-verbose:gc'
//jvmArgs '-Xcheck:jni'
jvmArgs '-Xms512m', '-Xmx512m'
jvmArgs '-XX:+UseConcMarkSweepGC'
Expand All @@ -33,7 +33,7 @@ ext {
heartVersion = '2.26.0'
jme3utilitiesuiVersion = '0.7.2'
jmonkeyengineVersion = '3.2.3-stable'
minieVersion = '0.8.0'
minieVersion = '0.8.1'
}

repositories {
Expand Down

0 comments on commit b4036a5

Please sign in to comment.