Skip to content

Commit

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

## Version 4.5.0 released on TBD

+ Cached the methods that free native objects, to improve performance.
+ Added the `setPivotInB()` method to the `Anchor` class.
+ Added a mesh customization API to the `DebugShapeFactory` class,
to support (for example) debug materials that need barycentric coordinates.
+ Publicized the `worldMax()` and `worldMin()` methods
in the `BulletAppState` class.
+ Improvements to examples:
+ Solved `UnsatisfiedLinkError` crashes in 5 apps.
+ Added the `TestIssue18GImpact` app.
+ Addressed JME issue 1630 in `TestBetterCharacter`.
+ Updated the native libraries to v12.5.0 of Libbulletjme,
which includes contact filtering for GImpact shapes.
+ Built using Gradle v7.3 .

## Version 4.5.0-test1 released on 25 October 2021

+ Bugfix: invalid contact points for heightfield/mesh shapes (issue #18)
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.5.0-SNAPSHOT";
return "master 4.5.0";
}
}
2 changes: 1 addition & 1 deletion common.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ apply plugin: 'java'

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

// current versions of various libraries:
heartVersion = '7.1.0' + jmeTarget
Expand Down

0 comments on commit e38f631

Please sign in to comment.