diff --git a/CHANGELOG.md b/CHANGELOG.md index fc33d8a7..90c1fc1e 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,10 @@ +## v2.0.2 (2022-04-23) +### Fix +* Address sensor breaking change ([`abc98f9`](https://github.com/alandtse/tesla/commit/abc98f9757be9eec6249c5144e42334c3e6f5c3f)) + ## v2.0.1 (2022-04-05) ### Fix * Bump teslajsonpy to 2.0.1 ([`bab521c`](https://github.com/alandtse/tesla/commit/bab521c42bbfc62a11c5bbc0c25c5d6e5bd64e29)) diff --git a/custom_components/tesla_custom/const.py b/custom_components/tesla_custom/const.py index 56f5af57..0c41d236 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 = "2.0.1" +VERSION = "2.0.2" CONF_WAKE_ON_START = "enable_wake_on_start" CONF_EXPIRATION = "expiration" CONF_POLLING_POLICY = "polling_policy" diff --git a/custom_components/tesla_custom/manifest.json b/custom_components/tesla_custom/manifest.json index a72302bb..0a004cf4 100644 --- a/custom_components/tesla_custom/manifest.json +++ b/custom_components/tesla_custom/manifest.json @@ -22,5 +22,5 @@ } ], "iot_class": "cloud_polling", - "version": "2.0.1" + "version": "2.0.2" } diff --git a/pyproject.toml b/pyproject.toml index 5e4a6fc9..c1ff4aa6 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "tesla" -version = "2.0.1" +version = "2.0.2" description = "A fork of the Home Assistant tesla integration using a oauth proxy to login." authors = ["Alan D. Tse "] license = "Apache-2.0"