Skip to content

Commit

Permalink
bump version to 8.2.0 and update release-notes.md
Browse files Browse the repository at this point in the history
  • Loading branch information
stephengold committed Sep 17, 2024
1 parent a952601 commit 6577cb4
Show file tree
Hide file tree
Showing 4 changed files with 19 additions and 5 deletions.
14 changes: 14 additions & 0 deletions MinieLibrary/release-notes.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,19 @@
# Release log for the Minie library and MinieExamples

## Version 8.2.0 released on TBD

+ Bugfix: logic error in `CollisionShape.nativeMargin()`
+ Disallowed GImpact shapes with zero triangles.
+ Publicized the `CollisionSpace.setLocalThreadPhysicsSpace()` method,
so apps creating spaces on multiple threads can stop a memory leak.
+ Moved the `DacWizard` and `VhacdTuner` subprojects to new GitHub projects.
+ Added the `TestIssue2282` and `TestManyBoxes` apps for testing.
+ Updated dependencies:
+ v9.1.0 of the Heart library,
+ v3.1.9 of Antora, and
+ v20.17.0 of Node.js .
+ Built using Gradle v8.10.1 .

## Version 8.1.0 released on 12 May 2024

+ Bugfix: JVM crash while serializing `BoundingValueHierarchy` (issue #41)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -59,6 +59,6 @@ private MinieVersion() {
* @return the branch name and revision string (not null, not empty)
*/
public static String versionShort() {
return "master 8.1.1-SNAPSHOT";
return "master 8.2.0";
}
}
2 changes: 1 addition & 1 deletion bash/release.sh
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ set -e

export JAVA_HOME=/usr/lib/jvm/jdk-17.0.10+7

V=8.1.0
V=8.2.0
D=/home/sgold/Releases/Minie/$V
mkdir $D

Expand Down
6 changes: 3 additions & 3 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -7,9 +7,9 @@ plugins {
ext {
jmeTarget = '' // distinguish non-JME libraries built for specific JME releases

minieSnapshot = '-SNAPSHOT' // for development builds
//minieSnapshot = '' // for release builds
minieVersion = '8.1.1'
//minieSnapshot = '-SNAPSHOT' // for development builds
minieSnapshot = '' // for release builds
minieVersion = '8.2.0'
}

subprojects {
Expand Down

0 comments on commit 6577cb4

Please sign in to comment.