Skip to content

Commit

Permalink
post-release fixup
Browse files Browse the repository at this point in the history
  • Loading branch information
stephengold committed Oct 19, 2024
1 parent fffe792 commit 41eec8c
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 9 deletions.
8 changes: 4 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -79,7 +79,7 @@ Add to the project’s "build.gradle" or "build.gradle.kts" file:
mavenCentral()
}
dependencies {
implementation("com.github.stephengold:SkyControl:1.0.5")
implementation("com.github.stephengold:SkyControl:1.1.0")
}

For some older versions of Gradle,
Expand All @@ -99,7 +99,7 @@ Add to the project’s "pom.xml" file:
<dependency>
<groupId>com.github.stephengold</groupId>
<artifactId>SkyControl</artifactId>
<version>1.0.5</version>
<version>1.1.0</version>
</dependency>

### Ant-built projects
Expand Down Expand Up @@ -160,7 +160,7 @@ Open the project's properties in the IDE (JME SDK or NetBeans):
+ using [Git]:
+ `git clone https://github.com/stephengold/SkyControl.git`
+ `cd SkyControl`
+ `git checkout -b latest 1.0.5`
+ `git checkout -b latest 1.1.0`
+ using a web browser:
+ browse to [the latest release][latest]
+ follow the "Source code (zip)" link
Expand Down Expand Up @@ -196,7 +196,7 @@ Older releases (v0.9.0 through v0.9.26) can be downloaded from
[the Jme3-utilities Project](https://github.com/stephengold/jme3-utilities/releases).

Newer Maven artifacts (since v0.9.30) are available from
[MavenCentral](https://central.sonatype.com/artifact/com.github.stephengold/SkyControl/1.0.4/versions).
[MavenCentral](https://central.sonatype.com/artifact/com.github.stephengold/SkyControl/1.1.0/versions).

Old Maven artifacts (v0.9.25 through v0.9.29) are available from JCenter.

Expand Down
2 changes: 1 addition & 1 deletion SkyLibrary/release-notes.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# release log for the SkyControl library and related software

## Version 1.1.0 released on TBD
## Version 1.1.0 released on 18 October 2024

Notable changes:
+ add the `colorDay()` and `setColorDay()` methods to the `SkyControl` class
Expand Down
2 changes: 1 addition & 1 deletion SkyLibrary/src/main/java/jme3utilities/sky/Constants.java
Original file line number Diff line number Diff line change
Expand Up @@ -106,6 +106,6 @@ private Constants() {
* @return branch and revision (not null, not empty)
*/
public static String versionShort() {
return "master 1.1.0";
return "master 1.1.1-SNAPSHOT";
}
}
6 changes: 3 additions & 3 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -6,9 +6,9 @@ plugins {

ext {
jmeTarget = '' // distinguish non-JME libraries built for specific JME releases
//skySnapshot = '-SNAPSHOT' // for development builds
skySnapshot = '' // for release builds
skycontrolVersion = '1.1.0' + jmeTarget + skySnapshot
skySnapshot = '-SNAPSHOT' // for development builds
//skySnapshot = '' // for release builds
skycontrolVersion = '1.1.1' + jmeTarget + skySnapshot
}

subprojects {
Expand Down

0 comments on commit 41eec8c

Please sign in to comment.