diff --git a/RELEASE.md b/RELEASE.md index 716603e..2335982 100644 --- a/RELEASE.md +++ b/RELEASE.md @@ -1,10 +1,12 @@ # RELEASE NOTES -## v0.11.2 - Add Controller Data +## v0.12.0 - Add Controller Data * TEDAPI: Add `get_device_controller()` to get device data which includes Powerwall THC_AmbientTemp data. Credit to @ygelfand for discovery and reported in https://github.com/jasonacox/Powerwall-Dashboard/discussions/392#discussioncomment-11360474 * Updated `vitals()` to include Powerwall temperature data. * Proxy Updated to t66 to include API response for /tedapi/controller. +* Remove Negative Solar Values [Option] by @jasonacox in https://github.com/jasonacox/pypowerwall/pull/113 +* Solar-Only Cloud Access - Fix errors with site references by @Nexarian in https://github.com/jasonacox/pypowerwall/pull/115 ## v0.11.1 - PW3 and FleetAPI Bugfix diff --git a/pypowerwall/__init__.py b/pypowerwall/__init__.py index 4b8237e..b577e5c 100644 --- a/pypowerwall/__init__.py +++ b/pypowerwall/__init__.py @@ -88,7 +88,7 @@ from typing import Union, Optional import time -version_tuple = (0, 11, 2) +version_tuple = (0, 12, 0) version = __version__ = '%d.%d.%d' % version_tuple __author__ = 'jasonacox'