diff --git a/RELEASE.md b/RELEASE.md index 593c008d..1c8c4f42 100644 --- a/RELEASE.md +++ b/RELEASE.md @@ -1,5 +1,9 @@ # RELEASE NOTES +## v4.5.4 - MacOS Fix + +* Fix bug in `setup.sh` that will error during Grafana "Sun and Moon" provider provisioning, as reported by @jdjammer in https://github.com/jasonacox/Powerwall-Dashboard/issues/534 + ## v4.5.3 - TEDAPI Route Tool * New `add_route.sh` tool to add persistent TEDAPI network routing by @SCHibbard in https://github.com/jasonacox/Powerwall-Dashboard/pull/520 diff --git a/VERSION b/VERSION index 4e298cc9..0ed2bfe9 100644 --- a/VERSION +++ b/VERSION @@ -1 +1 @@ -4.5.3 +4.5.4 diff --git a/setup.sh b/setup.sh index 8e531fb6..65de5118 100755 --- a/setup.sh +++ b/setup.sh @@ -447,11 +447,10 @@ if [ -f weather.sh ]; then ./weather.sh setup fi -# Set up Sun and Moon data provider if [ -f grafana/sunandmoon-template.yml ]; then cp grafana/sunandmoon-template.yml grafana/provisions/datasources/sunandmoon.yml - sed -i "s@zzLAT@${LAT}@g" grafana/provisions/datasources/sunandmoon.yml - sed -i "s@zzLONG@${LONG}@g" grafana/provisions/datasources/sunandmoon.yml + sed -i '' "s@zzLAT@${LAT}@g" grafana/provisions/datasources/sunandmoon.yml + sed -i '' "s@zzLONG@${LONG}@g" grafana/provisions/datasources/sunandmoon.yml fi # Build Docker in current environment diff --git a/upgrade.sh b/upgrade.sh index c61c3251..377f4f71 100755 --- a/upgrade.sh +++ b/upgrade.sh @@ -6,7 +6,7 @@ set -e # Set Globals -VERSION="4.5.3" +VERSION="4.5.4" CURRENT="Unknown" COMPOSE_ENV_FILE="compose.env" INFLUXDB_ENV_FILE="influxdb.env"