From 61e362f01dbeb0df9e5a592368bffe9aa69d4b37 Mon Sep 17 00:00:00 2001 From: Stephen Gold Date: Thu, 11 Jan 2024 22:46:37 -0800 Subject: [PATCH] bump library version to nifty-0.9.36 --- common.gradle | 2 +- license.txt | 2 +- nifty/release-notes.md | 5 +++++ nifty/src/main/java/jme3utilities/nifty/LibraryVersion.java | 4 ++-- 4 files changed, 9 insertions(+), 4 deletions(-) diff --git a/common.gradle b/common.gradle index 6b6df639..9aa418a2 100644 --- a/common.gradle +++ b/common.gradle @@ -12,7 +12,7 @@ ext { heartCoordinates = 'com.github.stephengold:Heart:8.8.0' // current versions of libraries: - jme3utilitiesniftyVersion = '0.9.36-SNAPSHOT' + jme3utilitiesniftyVersion = '0.9.36' jme3utilitiesxVersion = '0.3.3-SNAPSHOT' jme3Version = '3.6.1-stable' } diff --git a/license.txt b/license.txt index f36aa7c7..ac0b0c0f 100644 --- a/license.txt +++ b/license.txt @@ -1,5 +1,5 @@ com.jme3 software packages Copyright (c) 2009-2023 jMonkeyEngine -jme3utilities software packages Copyright (c) 2013-2023 Stephen Gold +jme3utilities software packages Copyright (c) 2013-2024 Stephen Gold All rights reserved. diff --git a/nifty/release-notes.md b/nifty/release-notes.md index d3eed067..64c5448a 100644 --- a/nifty/release-notes.md +++ b/nifty/release-notes.md @@ -1,5 +1,10 @@ # release log for the jme3-utilities-nifty library and related tests +## Version 0.9.36 released on TBD + +Base on version 3.6.1-stable of JMonkeyEngine, version 8.8.0 of the Heart +library, and version 1.1.1 of the Acorus library. + ## Version 0.9.35 released on 23 March 2023 Base on version 3.6.0-stable of JMonkeyEngine, version 8.3.2 of the Heart diff --git a/nifty/src/main/java/jme3utilities/nifty/LibraryVersion.java b/nifty/src/main/java/jme3utilities/nifty/LibraryVersion.java index d0b0f646..51887d20 100644 --- a/nifty/src/main/java/jme3utilities/nifty/LibraryVersion.java +++ b/nifty/src/main/java/jme3utilities/nifty/LibraryVersion.java @@ -1,5 +1,5 @@ /* - Copyright (c) 2017-2023, Stephen Gold + Copyright (c) 2017-2024, Stephen Gold All rights reserved. Redistribution and use in source and binary forms, with or without @@ -60,6 +60,6 @@ private LibraryVersion() { * @return branch and revision (not null, not empty) */ public static String versionShort() { - return "master 0.9.36-SNAPSHOT"; + return "master 0.9.36"; } }