Skip to content

Commit

Permalink
nifty library: bump version to 0.9.23 and update release-notes.md
Browse files Browse the repository at this point in the history
  • Loading branch information
stephengold committed Sep 10, 2021
1 parent 716be73 commit c515103
Show file tree
Hide file tree
Showing 4 changed files with 15 additions and 5 deletions.
4 changes: 2 additions & 2 deletions common.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -31,8 +31,8 @@ gradle.projectsEvaluated {
ext {
// current versions of various libraries
heartVersion = '7.1.0'
jme3utilitiesniftyVersion = '0.9.23-SNAPSHOT'
jme3utilitiesuiVersion = '0.9.6-SNAPSHOT'
jme3utilitiesniftyVersion = '0.9.23'
jme3utilitiesuiVersion = '0.9.5'
jme3utilitiesxVersion = '0.2.23-SNAPSHOT'
jmonkeyengineVersion = '3.4.0-stable'
}
Expand Down
5 changes: 3 additions & 2 deletions nifty/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -23,8 +23,9 @@ dependencies {
api 'com.github.nifty-gui:nifty:1.4.3'
api 'com.github.nifty-gui:nifty-default-controls:1.4.3'

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

// publishing tasks
Expand Down
9 changes: 9 additions & 0 deletions nifty/release-notes.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,14 @@
# release log for the jme3-utilities-nifty library and related tests

## Version 0.9.23 released on TBD

+ Add a `MultiSelectDialog` class. (API change!)
+ Add "Select all" and "Invert selection" buttons to multi-select dialogs.
+ Add count of selected items to multi-select dialogs.
+ Include a multi-select dialog in `TestPopups`.
+ Move `TestPopups` and related classes to a new package.
+ Base on version 7.1.0 of the Heart Library.

## Version 0.9.22 released on 22 August 2021

Base on version 7.0.0 of the Heart Library and version 0.9.5 of
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -60,6 +60,6 @@ private LibraryVersion() {
* @return branch and revision (not null, not empty)
*/
public static String versionShort() {
return "master 0.9.23-SNAPSHOT";
return "master 0.9.23";
}
}

0 comments on commit c515103

Please sign in to comment.