Skip to content

Commit bb3ff69

Browse files
committed
bump library versions, to ui-0.9.6 and x-0.3.0
1 parent c52c67e commit bb3ff69

File tree

6 files changed

+21
-7
lines changed

6 files changed

+21
-7
lines changed

common.gradle

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,8 +9,8 @@ ext {
99
// current versions of various libraries:
1010
heartVersion = '7.2.0'
1111
jme3utilitiesniftyVersion = '0.9.24-SNAPSHOT'
12-
jme3utilitiesuiVersion = '0.9.6-SNAPSHOT'
13-
jme3utilitiesxVersion = '0.2.23-SNAPSHOT'
12+
jme3utilitiesuiVersion = '0.9.6'
13+
jme3utilitiesxVersion = '0.3.0'
1414
jme3Version = '3.5.0-stable'
1515
}
1616

license.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
com.jme3 software packages Copyright (c) 2009-2019 jMonkeyEngine
2-
jme3utilities software packages Copyright (c) 2013-2021 Stephen Gold
2+
jme3utilities software packages Copyright (c) 2013-2022 Stephen Gold
33

44
All rights reserved.
55

ui/release-notes.md

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

3+
## Version 0.9.6 released on TBD
4+
5+
+ Added the `AbstractDemo` class, a subclass of `ActionApplication`.
6+
+ Targeted Java v8.
7+
+ Based on jMonkeyEngine v3.5.0-stable and version 7.2.0 of the Heart Library.
8+
39
## Version 0.9.5 released on 21 August 2021
410

511
+ Renamed the alphabet hotkeys from uppercase to lowercase.

ui/src/main/java/jme3utilities/ui/UiVersion.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 UiVersion() {
6060
* @return branch and revision (not null, not empty)
6161
*/
6262
public static String versionShort() {
63-
return "master 0.9.6-SNAPSHOT";
63+
return "master 0.9.6";
6464
}
6565
}

x/release-notes.md

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

3+
## Version 0.3.0 released on TBD
4+
5+
+ Moved the `Population` class to the Heart Library.
6+
+ Created a distinct logger for the `Shell3f` class.
7+
+ Targeted Java v8.
8+
+ Targeted version 3.5.0-stable of jMonkeyEngine.
9+
+ Based on version 7.2.0 of the Heart Library.
10+
311
## Version 0.2.22 released on 21 August 2021
412

513
+ Based on version 7.0.0 of the Heart Library.

x/src/main/java/jme3utilities/x/XVersion.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 XVersion() {
6060
* @return branch and revision (not null, not empty)
6161
*/
6262
public static String versionShort() {
63-
return "master 0.2.23-SNAPSHOT";
63+
return "master 0.3.0";
6464
}
6565
}

0 commit comments

Comments
 (0)