Skip to content

Commit

Permalink
post-release fixup
Browse files Browse the repository at this point in the history
  • Loading branch information
stephengold committed Dec 3, 2023
1 parent 01bd63c commit 371fddb
Show file tree
Hide file tree
Showing 7 changed files with 18 additions and 13 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, DacWizard, MinieExamples, and VhacdTuner

## Version 7.8.0 released on TBD
## Version 7.8.0 released on 2 December 2023

+ Bugfix: `PhysicsCharacter` disregards ignore lists
+ Bugfix: `makeMergedMesh()` uses the `JME_PHYSICSIGNORE` tag differently from
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 7.8.0";
return "master 7.8.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:7.7.0'
implementation 'com.github.stephengold:Minie:7.8.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>7.7.0</version>
<version>7.8.0</version>
</dependency>
----

Expand All @@ -133,7 +133,7 @@ Download the {Project} library and its dependencies
from GitHub and/or Maven Central:

* https://github.com/stephengold/Minie/releases/latest
* https://github.com/stephengold/Heart/releases/tag/8.7.0
* https://github.com/stephengold/Heart/releases/tag/8.8.0
* https://github.com/Simsilica/SimMath/releases/tag/sim-math-v1.6.0
* https://repo1.maven.org/maven2/org/jmonkeyengine/jme3-core/3.6.1-stable/
* https://repo1.maven.org/maven2/org/jmonkeyengine/jme3-terrain/3.6.1-stable/
Expand All @@ -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-7.7.0.jar" file.
.. Select the "Minie-7.8.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-7.7.0-javadoc.jar" file.
.. Select the "Minie-7.8.0-javadoc.jar" file.
.. Click on the btn:[Open] button.
.. Click on the btn:[Browse...] button to the right of "Sources:"
.. Select the "Minie-7.7.0-sources.jar" file.
.. Select the "Minie-7.8.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-7.7.0+debug".
such as "Minie-7.8.0+debug".

When a physics simulation doesn't behave as expected,
_debug visualization_ should be enabled
Expand Down
6 changes: 3 additions & 3 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -26,9 +26,9 @@ ext {
//lwjglCoordinates = 'org.jmonkeyengine:jme3-lwjgl:' + jme3Version // for LWJGL 2.x
lwjglCoordinates = 'org.jmonkeyengine:jme3-lwjgl3:' + jme3Version // for LWJGL 3.x

//minieSnapshot = '-SNAPSHOT' // for development builds
minieSnapshot = '' // for release builds
minieVersion = '7.8.0'
minieSnapshot = '-SNAPSHOT' // for development builds
//minieSnapshot = '' // for release builds
minieVersion = '7.8.1'
}

subprojects {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ Here's the recommended procedure:
.. using Git:
... `git clone https://github.com/stephengold/Minie.git`
... `cd Minie`
... `git checkout -b latest 7.7.0`
... `git checkout -b latest 7.8.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

|v7.8.0
|Heart v8.8.0 / sim-math v1.6.0 / jme3-terrain v3.6.1-stable
|jme3-core v3.6.1-stable / slf4j-api v1.7.32
|v18.6.0

|v7.7.0
|Heart v8.7.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 371fddb

Please sign in to comment.