diff --git a/common.gradle b/common.gradle index 2069b061..17ba6926 100644 --- a/common.gradle +++ b/common.gradle @@ -12,8 +12,8 @@ ext { heartCoordinates = 'com.github.stephengold:Heart:8.3.2' // current versions of libraries: - jme3utilitiesniftyVersion = '0.9.34+for36' - jme3utilitiesxVersion = '0.3.2-SNAPSHOT' + jme3utilitiesniftyVersion = '0.9.35' + jme3utilitiesxVersion = '0.3.2' jme3Version = '3.6.0-stable' } diff --git a/nifty/release-notes.md b/nifty/release-notes.md index c59a53e0..203dd2e0 100644 --- a/nifty/release-notes.md +++ b/nifty/release-notes.md @@ -1,6 +1,11 @@ # release log for the jme3-utilities-nifty library and related tests -## Version 0.9.34+for36 released on TBD +## Version 0.9.35 released on TBD + +Base on version 3.6.0-stable of JMonkeyEngine, version 8.3.2 of the Heart +library, and version 1.0.0 of the Acorus library. + +## Version 0.9.34+for36 released on 3 March 2023 Base on version 3.6.0-beta3 of JMonkeyEngine, version 8.3.1+for36 of the Heart library, and version 0.9.18+for36 of the Acorus library. diff --git a/nifty/src/main/java/jme3utilities/nifty/LibraryVersion.java b/nifty/src/main/java/jme3utilities/nifty/LibraryVersion.java index dcb17462..7801e854 100644 --- a/nifty/src/main/java/jme3utilities/nifty/LibraryVersion.java +++ b/nifty/src/main/java/jme3utilities/nifty/LibraryVersion.java @@ -60,6 +60,6 @@ private LibraryVersion() { * @return branch and revision (not null, not empty) */ public static String versionShort() { - return "master 0.9.34+for36"; + return "master 0.9.35"; } } diff --git a/x/release-notes.md b/x/release-notes.md index 6ee10a3a..673d3c49 100644 --- a/x/release-notes.md +++ b/x/release-notes.md @@ -1,5 +1,11 @@ # release log for the jme3-utilities-x library and related tests +## Version 0.3.2 released on TBD + ++ Finalized the `NavDebug` class. (API change) ++ Targeted version 3.6.0-stable of jMonkeyEngine. ++ Based on version 8.3.2 of the Heart Library. + ## Version 0.3.1 released on 24 June 2022 + Targeted version 3.5.2-stable of jMonkeyEngine. diff --git a/x/src/main/java/jme3utilities/x/XVersion.java b/x/src/main/java/jme3utilities/x/XVersion.java index 164acd7e..ad35cab3 100644 --- a/x/src/main/java/jme3utilities/x/XVersion.java +++ b/x/src/main/java/jme3utilities/x/XVersion.java @@ -1,5 +1,5 @@ /* - Copyright (c) 2017-2022, Stephen Gold + Copyright (c) 2017-2023, Stephen Gold All rights reserved. Redistribution and use in source and binary forms, with or without @@ -60,6 +60,6 @@ private XVersion() { * @return branch and revision (not null, not empty) */ public static String versionShort() { - return "master 0.3.2-SNAPSHOT"; + return "master 0.3.2"; } }