Skip to content

Commit

Permalink
UI library: bump version to 0.9.1 and and update release-notes.md
Browse files Browse the repository at this point in the history
  • Loading branch information
stephengold committed Nov 23, 2020
1 parent abea0f8 commit 1523a98
Show file tree
Hide file tree
Showing 3 changed files with 13 additions and 2 deletions.
2 changes: 1 addition & 1 deletion common.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ ext {
// current versions of various libraries
heartVersion = '6.2.0'
jme3utilitiesniftyVersion = '0.9.16-SNAPSHOT'
jme3utilitiesuiVersion = '0.9.0'
jme3utilitiesuiVersion = '0.9.1'
jme3utilitiesxVersion = '0.2.19'
jmonkeyengineVersion = '3.3.2-stable'
}
Expand Down
11 changes: 11 additions & 0 deletions ui/release-notes.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,16 @@
# release log for the jme3-utilities-ui library and related tests

## Version 0.9.1 released on TBD

+ Added combo hints to help screens.
+ Allowed spaces in signal names (should still be discouraged).
+ Added the `listCombos()` method to the `InputMode` class.
+ Added `countSignals()`, `isPositive()`, and `signalName()` methods
to the `Combo` class.
+ Clarified the `TestCombo` application.
+ Reimplemented `Signals` as a subclass of `SignalTracker`.
+ Based on version 6.2.0 of the Heart Library.

## Version 0.9.0 released on 16 August 2020

+ Redesigned the API of the `InputMode` class:
Expand Down
2 changes: 1 addition & 1 deletion ui/src/main/java/jme3utilities/ui/UiVersion.java
Original file line number Diff line number Diff line change
Expand Up @@ -60,6 +60,6 @@ private UiVersion() {
* @return branch and revision (not null, not empty)
*/
public static String versionShort() {
return "master 0.9.0-SNAPSHOT";
return "master 0.9.1";
}
}

0 comments on commit 1523a98

Please sign in to comment.