diff --git a/SkyLibrary/release-notes.md b/SkyLibrary/release-notes.md index 46a3cb8..69275bf 100644 --- a/SkyLibrary/release-notes.md +++ b/SkyLibrary/release-notes.md @@ -1,5 +1,15 @@ # release log for the SkyControl library and related software +## Version 1.0.2 released on TBD + +Notable changes: + + add Core profile support to J3MDs and shaders + + improve the examples: + + add command-line arguments to adjust the logging level + and bypass the Settings Dialog (for portability) + + add LWJGL natives for MacOSX_ARM64 (for portability) + + base on version 7.4.1 of the Heart Library + ## Version 1.0.1 released on 9 February 2022 Notable changes: diff --git a/SkyLibrary/src/main/java/jme3utilities/sky/Constants.java b/SkyLibrary/src/main/java/jme3utilities/sky/Constants.java index 7ff23a6..08dac61 100644 --- a/SkyLibrary/src/main/java/jme3utilities/sky/Constants.java +++ b/SkyLibrary/src/main/java/jme3utilities/sky/Constants.java @@ -107,6 +107,6 @@ private Constants() { * @return branch and revision (not null, not empty) */ public static String versionShort() { - return "master 1.0.2-SNAPSHOT"; + return "master 1.0.2"; } } diff --git a/common.gradle b/common.gradle index c958a6c..2e74b05 100644 --- a/common.gradle +++ b/common.gradle @@ -16,7 +16,7 @@ ext { // current versions of libraries: jme3Version = '3.5.0-stable' lwjgl3Version = '3.3.0' - skycontrolVersion = '1.0.2-SNAPSHOT' + skycontrolVersion = '1.0.2' } sourceCompatibility = JavaVersion.VERSION_1_7