diff --git a/CHANGELOG.md b/CHANGELOG.md index 5f342218..5a010705 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,10 @@ +## v0.2.1 (2021-09-03) +### Fix +* Update energy sensor for HA 2021.9 ([`9cb6806`](https://github.com/alandtse/tesla/commit/9cb680693a18d98e51aadafa8e3e9a8bd920c7ab)) + ## v0.2.0 (2021-08-13) ### Feature * Add charger_power attribute to rate sensor ([`66228d1`](https://github.com/alandtse/tesla/commit/66228d1f5bb6d4d0fcf96f5df195e564a9d987d8)) diff --git a/custom_components/tesla_custom/const.py b/custom_components/tesla_custom/const.py index e34b448e..0883d0b7 100644 --- a/custom_components/tesla_custom/const.py +++ b/custom_components/tesla_custom/const.py @@ -1,5 +1,5 @@ """Const file for Tesla cars.""" -VERSION = "0.2.0" +VERSION = "0.2.1" CONF_WAKE_ON_START = "enable_wake_on_start" CONF_EXPIRATION = "expiration" DOMAIN = "tesla_custom" diff --git a/custom_components/tesla_custom/manifest.json b/custom_components/tesla_custom/manifest.json index dd3ce53f..e09afa07 100644 --- a/custom_components/tesla_custom/manifest.json +++ b/custom_components/tesla_custom/manifest.json @@ -28,5 +28,5 @@ } ], "iot_class": "cloud_polling", - "version": "0.2.0" + "version": "0.2.1" } \ No newline at end of file diff --git a/pyproject.toml b/pyproject.toml index c7a900f7..fe9a4aec 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "tesla" -version = "0.2.0" +version = "0.2.1" description = "A fork of the Home Assistant tesla integration using a oauth proxy to login." authors = ["Alan D. Tse "] license = "Apache-2.0"