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 6, 2024
1 parent a330e6d commit e31c14c
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 8 deletions.
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,7 @@ Add to the project’s "build.gradle" or "build.gradle.kts" file:
mavenCentral()
}
dependencies {
implementation("com.github.stephengold:MonkeyWrench:0.6.1")
implementation("com.github.stephengold:MonkeyWrench:0.6.2")
}

For some older versions of Gradle,
Expand All @@ -94,7 +94,7 @@ Add to the project’s "pom.xml" file:
<dependency>
<groupId>com.github.stephengold</groupId>
<artifactId>MonkeyWrench</artifactId>
<version>0.6.1</version>
<version>0.6.2</version>
</dependency>

### Configuring the asset manager
Expand Down Expand Up @@ -249,7 +249,7 @@ only if no texture is found at any of those filenames.
+ using [Git]:
+ `git clone https://github.com/stephengold/MonkeyWrench.git`
+ `cd MonkeyWrench`
+ `git checkout -b latest 0.6.1`
+ `git checkout -b latest 0.6.2`
+ using a web browser:
+ browse to [the latest release][latest]
+ follow the "Source code (zip)" link
Expand Down
6 changes: 3 additions & 3 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -6,12 +6,12 @@ plugins {
}

ext {
//wrenchSnapshot = '-SNAPSHOT' // for development builds
wrenchSnapshot = '' // for release builds
wrenchSnapshot = '-SNAPSHOT' // for development builds
//wrenchSnapshot = '' // for release builds

jmeTarget = '' // distinguish non-JME libraries built for specific JME releases

wrenchVersion = '0.6.2' + jmeTarget
wrenchVersion = '0.6.3' + jmeTarget
}

subprojects {
Expand Down
2 changes: 1 addition & 1 deletion lib/release-log.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# release log for the MonkeyWrench library

## Version 0.6.2 released on TBD
## Version 0.6.2 released on 6 December 2024

+ Updated LWJGL to v3.3.3, the Heart library to v9.1.0, the ImageIO library to
v3.12.0, and the JMonkeyEngine libraries to v3.7.0-stable .
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -282,6 +282,6 @@ public static Spatial readCgm(
* @return a release name or a snapshot name (not null, not empty)
*/
public static String version() {
return "0.6.2";
return "0.6.3-SNAPSHOT";
}
}

0 comments on commit e31c14c

Please sign in to comment.