Skip to content

Commit

Permalink
bump version to 4.8.0 and update release-notes.md
Browse files Browse the repository at this point in the history
  • Loading branch information
stephengold committed Mar 20, 2022
1 parent ea86a63 commit 3daebc7
Show file tree
Hide file tree
Showing 5 changed files with 17 additions and 4 deletions.
1 change: 1 addition & 0 deletions MinieLibrary/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -127,6 +127,7 @@ ext {
dependencies {
api heartCoordinates
api 'com.simsilica:sim-math:1.4.1'
api 'org.jmonkeyengine:jme3-core:' + jme3Version
api 'org.jmonkeyengine:jme3-terrain:' + jme3Version

testImplementation junitCoordinates
Expand Down
12 changes: 12 additions & 0 deletions MinieLibrary/release-notes.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,17 @@
# Release log for the Minie library, DacWizard, and MinieExamples

## Version 4.8.0 released on TBD

+ Added native libraries for the MacOSX_ARM64 platform,
so that Minie applications can run on "Apple Silicon" Macs.
+ Created the "+ano" (Android natives only) build, for use in
Android signed bundles (for distribution via Google Store).
+ Added the `contactErp()`, `jointErp()`, `setContactErp()`,
and `setJointErp()` methods to the `SolverInfo` class,
to give applications better control over joint elasticity.
+ Based on v3.5.1-stable of JMonkeyEngine.
+ Updated the native libraries to v14.1.0 of Libbulletjme.

## Version 4.7.1 released on 11 March 2022

+ Bugfix: `PhysicsCollisionEvent.getNormalWorldOnB()` returns wrong value
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.7.2-SNAPSHOT";
return "master 4.8.0";
}
}
2 changes: 1 addition & 1 deletion bash/release.sh
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

set -e

V=4.7.1
V=4.8.0
D=/home/sgold/Releases/Minie/$V
mkdir $D

Expand Down
4 changes: 2 additions & 2 deletions common.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -14,8 +14,8 @@ ext {

// current versions of libraries:
jme3Version = '3.5.1-stable'
minieVersion = '4.7.2'
minieSnapshot = '-SNAPSHOT' // distinguish development builds from releases
minieVersion = '4.8.0'
minieSnapshot = '' // distinguish development builds from releases
}

sourceCompatibility = JavaVersion.VERSION_1_7
Expand Down

0 comments on commit 3daebc7

Please sign in to comment.