From 8c1d9b3253dbbfa51276463e0ebfe1f641c85d28 Mon Sep 17 00:00:00 2001 From: Stephen Gold Date: Sun, 14 Jan 2018 17:59:27 -0800 Subject: [PATCH] SkyControl library: bump version to 0.9.8 and update release-notes.md --- SkyControl/build.gradle | 7 ++----- SkyControl/release-notes.md | 10 +++++++++- .../src/main/java/jme3utilities/sky/Constants.java | 4 ++-- common.gradle | 2 +- 4 files changed, 14 insertions(+), 9 deletions(-) diff --git a/SkyControl/build.gradle b/SkyControl/build.gradle index 6e62aefbe..8283cc6d3 100644 --- a/SkyControl/build.gradle +++ b/SkyControl/build.gradle @@ -17,12 +17,9 @@ sourcesJar { baseName project.ext.baseName } dependencies { compile "org.jmonkeyengine:jme3-core:$jmonkeyengineVersion" - compile "org.jmonkeyengine:jme3-bullet:$jmonkeyengineVersion" - compile "org.jmonkeyengine:jme3-effects:$jmonkeyengineVersion" - compile "org.jmonkeyengine:jme3-terrain:$jmonkeyengineVersion" - //compile "jme3utilities:jme3-utilities-heart:$jme3utilitiesheartVersion" - compile project(':heart') + compile "jme3utilities:jme3-utilities-heart:$jme3utilitiesheartVersion" + //compile project(':heart') } task pom { diff --git a/SkyControl/release-notes.md b/SkyControl/release-notes.md index c02143390..9b905793d 100644 --- a/SkyControl/release-notes.md +++ b/SkyControl/release-notes.md @@ -1,13 +1,21 @@ # release notes for the SkyControl library and related tests +## Version 0.9.8 released on TBD + +Notable changes: + + fix a bug in Updater which caused an IllegalArgumentException while cloning + + standardize the BSD license texts for tests + ## Version 0.9.7for32 released on 5 December 2017 +Notable changes: + 1st release to target JME 3.2 - + Utilize contrast-adjustment filter in GlobeRenderer + + use a contrast-adjustment filter in GlobeRenderer + rename private fields ## Version 0.9.6 released on 19 September 2017 +Notable changes: + use the DomeMesh class from the heart library + move wireframe material to heart library + make SkyControl JmeCloneable diff --git a/SkyControl/src/main/java/jme3utilities/sky/Constants.java b/SkyControl/src/main/java/jme3utilities/sky/Constants.java index 32bccb0bc..b0de2cbd8 100644 --- a/SkyControl/src/main/java/jme3utilities/sky/Constants.java +++ b/SkyControl/src/main/java/jme3utilities/sky/Constants.java @@ -1,5 +1,5 @@ /* - Copyright (c) 2014-2017, Stephen Gold + Copyright (c) 2014-2018, Stephen Gold All rights reserved. Redistribution and use in source and binary forms, with or without @@ -107,6 +107,6 @@ private Constants() { * @return branch and revision (not null, not empty) */ public static String getVersionShort() { - return "master 0.9.7for32+1"; + return "master 0.9.8"; } } diff --git a/common.gradle b/common.gradle index 64ae9cc91..bc1ea3f22 100644 --- a/common.gradle +++ b/common.gradle @@ -24,7 +24,7 @@ ext { jme3utilitieswesVersion = '0.3.0for32' jme3utilitiesxVersion = '0.2.2for32' jmonkeyengineVersion = '3.2.0-stable' - skycontrolVersion = '0.9.7for32' + skycontrolVersion = '0.9.8' } repositories {