Skip to content

Commit

Permalink
bump version to 4.5.0-test1 and update release-notes.md
Browse files Browse the repository at this point in the history
  • Loading branch information
stephengold committed Oct 25, 2021
1 parent 1291831 commit f510d0e
Show file tree
Hide file tree
Showing 3 changed files with 20 additions and 3 deletions.
17 changes: 17 additions & 0 deletions MinieLibrary/release-notes.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,22 @@
# Release log for the Minie library, DacWizard, and MinieExamples

## Version 4.5.0-test1 released on TBD

+ Bugfix: invalid contact points for heightfield/mesh shapes (issue #18)
+ Added a flag to disable contact filtering on a per-shape basis.
+ Added accessors to the `CollisionSpace` class for the collision dispatcher's
"deterministic" option.
+ Made all native physics objects `Comparable` (for use in collections).
+ Improvements to examples:
+ Added 2 tutorial apps for character physics:
`HelloWalkOtoBcc` and `HelloWalkOtoCc`.
+ Added 2 tests for issue #18:
`TestIssue18Heightfield` and `TestIssue18Mesh`.
+ Made some of the tuturial apps more comparable.
+ Created a merged mesh shape for the table in `PoolDemo` (more efficient).
+ Reduced the camera zoom speed in `PoolDemo` (to avoid overshooting).
+ Updated the native libraries to v12.4.1 of Libbulletjme.

## Version 4.4.0 released on 1 October 2021

+ Added 10 double-precision accessors and created an API dependency
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.4.1-SNAPSHOT";
return "master 4.5.0-test1";
}
}
4 changes: 2 additions & 2 deletions common.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -4,14 +4,14 @@ apply plugin: 'java'

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

// current versions of various libraries:
heartVersion = '7.1.0' + jmeTarget
jme3utilitiesuiVersion = '0.9.5' + jmeTarget
jmonkeyengineVersion = '3.4.0-stable'
junitVersion = '4.13.2'
minieVersion = '4.4.1'
minieVersion = '4.5.0-test1'
wesVersion = '0.6.7' + jmeTarget
}

Expand Down

0 comments on commit f510d0e

Please sign in to comment.