Skip to content

Commit c515103

Browse files
committed
nifty library: bump version to 0.9.23 and update release-notes.md
1 parent 716be73 commit c515103

File tree

4 files changed

+15
-5
lines changed

4 files changed

+15
-5
lines changed

common.gradle

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -31,8 +31,8 @@ gradle.projectsEvaluated {
3131
ext {
3232
// current versions of various libraries
3333
heartVersion = '7.1.0'
34-
jme3utilitiesniftyVersion = '0.9.23-SNAPSHOT'
35-
jme3utilitiesuiVersion = '0.9.6-SNAPSHOT'
34+
jme3utilitiesniftyVersion = '0.9.23'
35+
jme3utilitiesuiVersion = '0.9.5'
3636
jme3utilitiesxVersion = '0.2.23-SNAPSHOT'
3737
jmonkeyengineVersion = '3.4.0-stable'
3838
}

nifty/build.gradle

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -23,8 +23,9 @@ dependencies {
2323
api 'com.github.nifty-gui:nifty:1.4.3'
2424
api 'com.github.nifty-gui:nifty-default-controls:1.4.3'
2525

26-
// api 'com.github.stephengold:jme3-utilities-ui:' + jme3utilitiesuiVersion
27-
api project(':ui')
26+
api 'com.github.stephengold:Heart:' + heartVersion
27+
api 'com.github.stephengold:jme3-utilities-ui:' + jme3utilitiesuiVersion
28+
// api project(':ui')
2829
}
2930

3031
// publishing tasks

nifty/release-notes.md

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

3+
## Version 0.9.23 released on TBD
4+
5+
+ Add a `MultiSelectDialog` class. (API change!)
6+
+ Add "Select all" and "Invert selection" buttons to multi-select dialogs.
7+
+ Add count of selected items to multi-select dialogs.
8+
+ Include a multi-select dialog in `TestPopups`.
9+
+ Move `TestPopups` and related classes to a new package.
10+
+ Base on version 7.1.0 of the Heart Library.
11+
312
## Version 0.9.22 released on 22 August 2021
413

514
Base on version 7.0.0 of the Heart Library and version 0.9.5 of

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -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.23-SNAPSHOT";
63+
return "master 0.9.23";
6464
}
6565
}

0 commit comments

Comments
 (0)