diff --git a/RELEASE.md b/RELEASE.md index 93010565..7309ae0f 100644 --- a/RELEASE.md +++ b/RELEASE.md @@ -1,5 +1,10 @@ # RELEASE NOTES +## v4.3.2 - Solar Only Fix + +* Upgrade to pyPowerwall v0.8.5 proxy t56 +* Fix bug with setup for certain Solar Only systems where clod mode process fails due to missing `site_name`. Identified by @hulkster in https://github.com/jasonacox/Powerwall-Dashboard/discussions/475 + ## v4.3.1 - Control APIs * Upgrade to pyPowerwall v0.8.4 proxy t55 diff --git a/VERSION b/VERSION index f77856a6..cc2fbe89 100644 --- a/VERSION +++ b/VERSION @@ -1 +1 @@ -4.3.1 +4.3.2 diff --git a/powerwall.yml b/powerwall.yml index d4ae2936..bb949ec9 100644 --- a/powerwall.yml +++ b/powerwall.yml @@ -18,7 +18,7 @@ services: - influxdb.env pypowerwall: - image: jasonacox/pypowerwall:0.8.4t55 + image: jasonacox/pypowerwall:0.8.5t56 container_name: pypowerwall hostname: pypowerwall restart: unless-stopped diff --git a/upgrade.sh b/upgrade.sh index 477f7a41..b4cd0842 100755 --- a/upgrade.sh +++ b/upgrade.sh @@ -6,7 +6,7 @@ set -e # Set Globals -VERSION="4.3.1" +VERSION="4.3.2" CURRENT="Unknown" COMPOSE_ENV_FILE="compose.env" INFLUXDB_ENV_FILE="influxdb.env"