Skip to content

Commit

Permalink
bump version to 4.6.0 and update release-notes.md
Browse files Browse the repository at this point in the history
  • Loading branch information
stephengold committed Dec 4, 2021
1 parent 2f9098d commit c94cf81
Show file tree
Hide file tree
Showing 3 changed files with 19 additions and 3 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.6.0 released on TBD

+ Bugfix: issue #19 (zero-thickness mesh shape crashes the JRE)
+ Dropped support for the MacOSX32 platform.
+ Based on v3.4.1-stable of JMonkeyEngine.
+ Changes to the examples:
+ Solved 2 null-pointer exceptions in Jme3Examples.
+ Added the `TestInsideTriangle` and `TestIssue19` apps to MinieExamples.
+ Split off the `PhysicsDemo` class from `AbstractDemo`.
+ Built Jme3Examples using Java 8 .
+ Added the `isInsideTriangle()` method to the `NativeLibrary` class.
+ Guarded some low-level logging code to improve efficiency.
+ Built using Gradle v7.3.1 .
+ Updated the native libraries to v12.6.0 of Libbulletjme, which includes
Bullet updates through 13 November 2021.

## Version 4.5.0 released on 19 November 2021

+ Cached the methods that free native objects, to improve performance.
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.1-SNAPSHOT";
return "master 4.6.0";
}
}
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
jme3Version = '3.4.1-stable'
junitVersion = '4.13.2'
minieVersion = '4.5.1'
minieVersion = '4.6.0'
wesVersion = '0.6.7' + jmeTarget
}

Expand Down

0 comments on commit c94cf81

Please sign in to comment.