Skip to content

Commit

Permalink
Merge branch 'release/1.08'
Browse files Browse the repository at this point in the history
  • Loading branch information
darmbrust committed Jan 12, 2021
2 parents 761b588 + dfe727f commit 1c2ffce
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 4 deletions.
4 changes: 3 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,9 @@ There are lots of TODOs.... useful things I may add (pull requests welcome)
- Push data to user-configured upstream stores like CWOP.

# Release Notes

Change version in WeatherLinkLiveGUI.java too
```
mvn -B gitflow:release-start gitflow:release-finish -DreleaseVersion=1.07 -DdevelopmentVersion=1.08
mvn -B gitflow:release-start gitflow:release-finish -DreleaseVersion=1.08 -DdevelopmentVersion=1.09
```
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@

<groupId>net.sagebits.weatherlink</groupId>
<artifactId>weatherlink</artifactId>
<version>1.07</version>
<version>1.08</version>
<packaging>jar</packaging>

<name>WeatherLink Logger and GUI</name>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ public enum StoredDataTables
static
{
//Need to make sure the StoredDataTypes have been init'ed before this call. Don't remove the call to values()
LogManager.getLogger().debug("creating tables if missing - {} potential columns", StoredDataTypes.values().length);
LogManager.getLogger(StoredDataTables.class).debug("creating tables if missing - {} potential columns", StoredDataTypes.values().length);
}

private StoredDataTables(String tableName)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ public void finishSetUp()
wllc_ = loader.getController();
wllc_.finishInit(mainStage_);
// mainStage_.getIcons().add(Images.APPLICATION.getImage());
mainStage_.setTitle("Weather Link Live GUI");
mainStage_.setTitle("Weather Link Live GUI 1.08");
mainStage_.setOnCloseRequest(event ->
{
wllc_.shutdown();
Expand Down

0 comments on commit 1c2ffce

Please sign in to comment.