Skip to content

Commit d48a8c1

Browse files
committed
nifty library: bump version to 0.9.24 and update release-notes.md
1 parent 79f8d50 commit d48a8c1

File tree

4 files changed

+11
-6
lines changed

4 files changed

+11
-6
lines changed

common.gradle

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,9 +8,9 @@ ext {
88

99
// current versions of various libraries:
1010
heartVersion = '7.2.0'
11-
jme3utilitiesniftyVersion = '0.9.24-SNAPSHOT'
11+
jme3utilitiesniftyVersion = '0.9.24'
1212
jme3utilitiesuiVersion = '0.9.6'
13-
jme3utilitiesxVersion = '0.3.0'
13+
jme3utilitiesxVersion = '0.3.1-SNAPSHOT'
1414
jme3Version = '3.5.0-stable'
1515
}
1616

nifty/build.gradle

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,8 +20,8 @@ dependencies {
2020
api 'com.github.nifty-gui:nifty-default-controls:1.4.3'
2121

2222
api 'com.github.stephengold:Heart:' + heartVersion
23-
//api 'com.github.stephengold:jme3-utilities-ui:' + jme3utilitiesuiVersion
24-
api project(':ui')
23+
api 'com.github.stephengold:jme3-utilities-ui:' + jme3utilitiesuiVersion
24+
//api project(':ui')
2525
}
2626

2727
javadoc {

nifty/release-notes.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,10 @@
11
# release log for the jme3-utilities-nifty library and related tests
22

3+
## Version 0.9.24 released on TBD
4+
5+
Base on version 7.2.0 of the Heart Library and version 0.9.6 of
6+
the jme3-utilities-ui library.
7+
38
## Version 0.9.23 released on 10 September 2021
49

510
+ Add a `MultiSelectDialog` class. (API change!)

nifty/src/main/java/jme3utilities/nifty/LibraryVersion.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
Copyright (c) 2017-2021, Stephen Gold
2+
Copyright (c) 2017-2022, Stephen Gold
33
All rights reserved.
44
55
Redistribution and use in source and binary forms, with or without
@@ -60,6 +60,6 @@ private LibraryVersion() {
6060
* @return branch and revision (not null, not empty)
6161
*/
6262
public static String versionShort() {
63-
return "master 0.9.24-SNAPSHOT";
63+
return "master 0.9.24";
6464
}
6565
}

0 commit comments

Comments
 (0)