Skip to content

Commit 00c1ad2

Browse files
committed
bump library versions: ui0.7.1, sky0.9.17, x0.2.9
1 parent 10e214c commit 00c1ad2

File tree

10 files changed

+29
-13
lines changed

10 files changed

+29
-13
lines changed

SkyControl/build.gradle

+2-2
Original file line numberDiff line numberDiff line change
@@ -19,8 +19,8 @@ processResources { dependsOn ':textures:skyTextures' }
1919
dependencies {
2020
compile "org.jmonkeyengine:jme3-effects:$jmonkeyengineVersion"
2121

22-
//compile "jme3utilities:jme3-utilities-heart:$jme3utilitiesheartVersion"
23-
compile project(':heart')
22+
compile "jme3utilities:jme3-utilities-heart:$jme3utilitiesheartVersion"
23+
//compile project(':heart')
2424
}
2525

2626
task pom {

SkyControl/release-notes.md

+7
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,12 @@
11
# release notes for the SkyControl library and related tests
22

3+
## Version 0.9.17 released on TBD
4+
5+
Notable changes:
6+
+ prevent shadows from being cast by/on a FloorControl
7+
+ add LandscapeControl (from the debug library) to the tests
8+
+ base on version 2.21 of the heart library
9+
310
## Version 0.9.16 released on 14 January 2018
411

512
Notable changes:

SkyControl/src/main/java/jme3utilities/sky/Constants.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -107,6 +107,6 @@ private Constants() {
107107
* @return branch and revision (not null, not empty)
108108
*/
109109
public static String versionShort() {
110-
return "master 0.9.16+1";
110+
return "master 0.9.17";
111111
}
112112
}

common.gradle

+3-3
Original file line numberDiff line numberDiff line change
@@ -32,10 +32,10 @@ ext {
3232
jcommanderVersion = '1.74'
3333
jme3utilitiesheartVersion = '2.21.0'
3434
jme3utilitiesniftyVersion = '0.9.1'
35-
jme3utilitiesuiVersion = '0.7.0'
36-
jme3utilitiesxVersion = '0.2.8'
35+
jme3utilitiesuiVersion = '0.7.1'
36+
jme3utilitiesxVersion = '0.2.9'
3737
jmonkeyengineVersion = '3.2.2-stable'
38-
skycontrolVersion = '0.9.16'
38+
skycontrolVersion = '0.9.17'
3939
}
4040

4141
repositories {

ui/build.gradle

+2-2
Original file line numberDiff line numberDiff line change
@@ -15,8 +15,8 @@ javadocJar { baseName project.ext.baseName }
1515
sourcesJar { baseName project.ext.baseName }
1616

1717
dependencies {
18-
//compile "jme3utilities:jme3-utilities-heart:$jme3utilitiesheartVersion"
19-
compile project(':heart')
18+
compile "jme3utilities:jme3-utilities-heart:$jme3utilitiesheartVersion"
19+
//compile project(':heart')
2020
}
2121

2222
task pom {

ui/release-notes.md

+5
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,10 @@
11
# release notes for the jme3-utilities-ui library and related tests
22

3+
## Version 0.7.1 released on TBD
4+
5+
+ Added a `CameraOrbitAppState` class based on the one in MinieExamples.
6+
+ Based on version 2.21 of the jme3-utilities-heart library.
7+
38
## Version 0.7.0 released on 13 January 2019
49

510
+ Added a `DisplaySizeLimits` class.

ui/src/main/java/jme3utilities/ui/UiVersion.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -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.7.0+1";
63+
return "master 0.7.1";
6464
}
6565
}

x/build.gradle

+3-3
Original file line numberDiff line numberDiff line change
@@ -9,16 +9,16 @@ ext {
99
baseName = "$artifact-$version"
1010
}
1111

12+
build { dependsOn 'pom' }
1213
jar { baseName project.ext.baseName }
1314
javadocJar { baseName project.ext.baseName }
1415
sourcesJar { baseName project.ext.baseName }
1516

1617
dependencies {
17-
//compile "jme3utilities:jme3-utilities-heart:$jme3utilitiesheartVersion"
18-
compile project(':heart')
18+
compile "jme3utilities:jme3-utilities-heart:$jme3utilitiesheartVersion"
19+
//compile project(':heart')
1920
}
2021

21-
build.dependsOn('pom')
2222
task pom {
2323
doLast {
2424
pom {

x/release-notes.md

+4
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,9 @@
11
# release notes for the jme3-utilities-x library and related tests
22

3+
## Version 0.2.9 released on TBD
4+
5+
Based on version 2.21 of the jme3-utilities-heart library.
6+
37
## Version 0.2.8 released on 6 January 2019
48

59
+ Allow streaming audio with an `AudioControl`.

x/src/main/java/jme3utilities/x/XVersion.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -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.8+1";
63+
return "master 0.2.9";
6464
}
6565
}

0 commit comments

Comments
 (0)