Skip to content

Commit

Permalink
post-release fixup
Browse files Browse the repository at this point in the history
  • Loading branch information
stephengold committed Sep 17, 2024
1 parent 6577cb4 commit 7140118
Show file tree
Hide file tree
Showing 7 changed files with 15 additions and 10 deletions.
2 changes: 1 addition & 1 deletion MinieLibrary/release-notes.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Release log for the Minie library and MinieExamples

## Version 8.2.0 released on TBD
## Version 8.2.0 released on 16 September 2024

+ Bugfix: logic error in `CollisionShape.nativeMargin()`
+ Disallowed GImpact shapes with zero triangles.
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.2.0";
return "master 8.2.1-SNAPSHOT";
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -92,7 +92,7 @@ repositories {
mavenCentral()
}
dependencies {
implementation("com.github.stephengold:Minie:8.1.0")
implementation("com.github.stephengold:Minie:8.2.0")
}
----

Expand All @@ -115,7 +115,7 @@ Add to the project's "pom.xml" file:
<dependency>
<groupId>com.github.stephengold</groupId>
<artifactId>Minie</artifactId>
<version>8.1.0</version>
<version>8.2.0</version>
</dependency>
----

Expand Down Expand Up @@ -151,15 +151,15 @@ Open the project's properties in the IDE (JME SDK or NetBeans):
. Add the Heart class JAR:
.. Click on the btn:[Add JAR/Folder] button.
.. Navigate to the download directory.
.. Select the "Minie-8.1.0.jar" file.
.. Select the "Minie-8.2.0.jar" file.
.. Click on the btn:[Open] button.
. (optional) Add JARs for javadoc and sources:
.. Click on the btn:[Edit] button.
.. Click on the btn:[Browse...] button to the right of "Javadoc:"
.. Select the "Minie-8.1.0-javadoc.jar" file.
.. Select the "Minie-8.2.0-javadoc.jar" file.
.. Click on the btn:[Open] button.
.. Click on the btn:[Browse...] button to the right of "Sources:"
.. Select the "Minie-8.1.0-sources.jar" file.
.. Select the "Minie-8.2.0-sources.jar" file.
.. Click on the btn:[Open] button button again.
.. Click on the btn:[OK] button to close the "Edit Jar Reference" dialog.
. Add the other JVM libraries in a similar manner.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ During development, Java assertions should be enabled using:
Similarly, native-code assertions should be enabled during development,
by specifying a {Project} library of the "debug" type,
such as "Minie-8.1.0+debug".
such as "Minie-8.2.0+debug".

When a physics simulation doesn't behave as expected,
_debug visualization_ should be enabled
Expand Down
2 changes: 1 addition & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ ext {

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

subprojects {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ Here's the recommended procedure:
.. using Git:
... `git clone https://github.com/stephengold/Minie.git`
... `cd Minie`
... `git checkout -b latest 8.1.0`
... `git checkout -b latest 8.2.0`
.. using a web browser:
... browse to https://github.com/stephengold/Minie/releases/latest
... follow the "Source code (zip)" link
Expand Down
5 changes: 5 additions & 0 deletions src/site/antora/minie-project/modules/ROOT/pages/depends.adoc
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,11 @@ the Libbulletjme release that corresponds to each Minie release.
|===
|Minie release |Direct dependencies |Transitive dependencies |Native libraries

|v8.2.0
|Heart v9.1.0 / sim-math v1.6.0 / jme3-terrain v3.6.1-stable
|jme3-core v3.6.1-stable / slf4j-api v1.7.32
|v21.2.1

|v8.1.0
|Heart v9.0.0 / sim-math v1.6.0 / jme3-terrain v3.6.1-stable
|jme3-core v3.6.1-stable / slf4j-api v1.7.32
Expand Down

0 comments on commit 7140118

Please sign in to comment.