diff --git a/CHANGELOG b/CHANGELOG index 20414e7..d2d075f 100644 --- a/CHANGELOG +++ b/CHANGELOG @@ -1,6 +1,6 @@ # Changelog -## [WIP] +## [0.5.2] - Use yarl for URL parsing by @bdraco (https://github.com/jrester/tesla_powerwall/pull/62) - Correctly handle disabled battery packs (https://github.com/jrester/tesla_powerwall/pull/66/) diff --git a/pyproject.toml b/pyproject.toml index 02865c8..3c09503 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta" [project] name = "tesla_powerwall" -version = "0.5.1" +version = "0.5.2" description = "A simple API for accessing the Tesla Powerwall over your local network" readme = "README.md" license = { file = "LICENSE"} diff --git a/tesla_powerwall/__init__.py b/tesla_powerwall/__init__.py index b6d7932..0451176 100644 --- a/tesla_powerwall/__init__.py +++ b/tesla_powerwall/__init__.py @@ -37,6 +37,6 @@ SolarResponse, ) -VERSION = "0.5.1" +VERSION = "0.5.2" __all__ = list(filter(lambda n: not n.startswith("_"), globals().keys()))