Skip to content

Commit

Permalink
bump version to 1.0.4 and update release-notes.md
Browse files Browse the repository at this point in the history
  • Loading branch information
stephengold committed Mar 24, 2023
1 parent 3b74a1a commit 44a6066
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 3 deletions.
8 changes: 8 additions & 0 deletions SkyLibrary/release-notes.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,13 @@
# release log for the SkyControl library and related software

## Version 1.0.4 released on TBD

Notable changes:
+ publicize `SkyControlCore.numCloudLayers`
+ base on version 8.3.2 of the Heart Library and target JME 3.6.0-stable
+ add a "Created-By" attribute to the class-jar manifest
+ replace `java.util.Calendar` with `java.time.LocalDate`

## Version 1.0.3 released on 26 June 2022

Notable changes:
Expand Down
4 changes: 2 additions & 2 deletions SkyLibrary/src/main/java/jme3utilities/sky/Constants.java
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*
Copyright (c) 2014-2022, Stephen Gold
Copyright (c) 2014-2023, 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 versionShort() {
return "master 1.0.4-SNAPSHOT";
return "master 1.0.4";
}
}
2 changes: 1 addition & 1 deletion common.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ ext {

// current versions of libraries:
jme3Version = '3.6.0-stable'
skycontrolVersion = '1.0.4-SNAPSHOT'
skycontrolVersion = '1.0.4'
}

sourceCompatibility = JavaVersion.VERSION_1_8
Expand Down

0 comments on commit 44a6066

Please sign in to comment.