Skip to content

Commit

Permalink
SkyControl library: bump version to 0.9.8 and update release-notes.md
Browse files Browse the repository at this point in the history
  • Loading branch information
stephengold committed Jan 15, 2018
1 parent 64de508 commit 8c1d9b3
Show file tree
Hide file tree
Showing 4 changed files with 14 additions and 9 deletions.
7 changes: 2 additions & 5 deletions SkyControl/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -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 {
Expand Down
10 changes: 9 additions & 1 deletion SkyControl/release-notes.md
Original file line number Diff line number Diff line change
@@ -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
Expand Down
4 changes: 2 additions & 2 deletions SkyControl/src/main/java/jme3utilities/sky/Constants.java
Original file line number Diff line number Diff line change
@@ -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
Expand Down Expand Up @@ -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";
}
}
2 changes: 1 addition & 1 deletion common.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -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 {
Expand Down

0 comments on commit 8c1d9b3

Please sign in to comment.