Skip to content

Commit

Permalink
bump version to 4.2.0 and update release-notes.md
Browse files Browse the repository at this point in the history
  • Loading branch information
stephengold committed Jun 24, 2021
1 parent 1a1eef8 commit 95c5f3d
Show file tree
Hide file tree
Showing 3 changed files with 18 additions and 5 deletions.
17 changes: 15 additions & 2 deletions MinieLibrary/release-notes.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,18 @@
# Release log for the Minie library, DacWizard, and MinieExamples

## Version 4.2.0 released on TBD

+ Bugfix: Libbulletjme issue #7 (GImpact contact tests always fail)
+ Dump the bounds and ignore list of each `PhysicsGhostObject`.
+ Added `hasClosest()` and `hasContact()` methods
to the `CollisionSpace` class.
+ Added a public `getShapeType()` method to the `CollisionShape` class.
+ Document the lack of collision detection between 3 concave shapes.
+ Use a migrated Jaime model in MinieExamples.
+ Updated the native libraries to v10.5.0 of Libbulletjme, which includes
Bullet v2 updates through 12 May 2021.
+ Built using Gradle v7.1 .

## Version 4.1.1 released on 1 June 2021

+ Bugfix: issue #16 (MinieExamples uses deprecated classes)
Expand All @@ -19,7 +32,7 @@
+ Added `setPivotInA()` and `setPivotInB()` methods to `Point2PointJoint`.
+ Added `HelloDoor` application to the MinieExamples subproject.
+ Updated the native libraries to v10.3.1 of Libbulletjme, which includes
Bullet v2 source code updated through 21 April 2021.
Bullet v2 updates through 21 April 2021.
+ Based on:
+ v3.4.0-beta1 of JMonkeyEngine,
+ v6.4.3+for34 of the Heart library,
Expand Down Expand Up @@ -59,7 +72,7 @@
+ v0.9.2 of the jme3-utilities-ui library, and
+ v0.9.18 of the jme3-utilities-nifty library.
+ Updated the native libraries to v10.1.0 of Libbulletjme, which includes
Bullet v2 source code updated through 23 January 2021.
Bullet v2 updates through 23 January 2021.

## Version 3.1.0 released on 9 January 2021

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -59,6 +59,6 @@ private MinieVersion() {
* @return the branch and revision string (not null, not empty)
*/
public static String versionShort() {
return "master 4.1.2-SNAPSHOT";
return "master 4.2.0";
}
}
4 changes: 2 additions & 2 deletions common.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -28,14 +28,14 @@ gradle.projectsEvaluated {

ext {
jmeTarget = ''
minieSnapshot = '-SNAPSHOT'
minieSnapshot = ''

// current versions of various libraries
heartVersion = '6.4.4' + jmeTarget
jme3utilitiesuiVersion = '0.9.4' + jmeTarget
jmonkeyengineVersion = '3.4.0-stable'
junitVersion = '4.13.2'
minieVersion = '4.1.2'
minieVersion = '4.2.0'
wesVersion = '0.6.6' + jmeTarget
}

Expand Down

0 comments on commit 95c5f3d

Please sign in to comment.