diff --git a/CHANGELOG.md b/CHANGELOG.md index 22249295..58637d2c 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,10 @@ +## v2.2.1 (2022-05-02) +### Fix +* Check vin before adjusting climate devices ([#208](https://github.com/alandtse/tesla/issues/208)) ([`5c81955`](https://github.com/alandtse/tesla/commit/5c819554ef3d81446066262b4435066d17cf7a96)) + ## v2.2.0 (2022-04-30) ### Feature * Enable heated seat and steering wheel entities automatically ([#205](https://github.com/alandtse/tesla/issues/205)) ([`ed975f3`](https://github.com/alandtse/tesla/commit/ed975f35fb7c6d33f2dc4b96a6862374279fe091)) diff --git a/custom_components/tesla_custom/const.py b/custom_components/tesla_custom/const.py index 5c293c0a..b04917c6 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.2.0" +VERSION = "2.2.1" 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 6d52b09e..863c8a7c 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.2.0" + "version": "2.2.1" } diff --git a/pyproject.toml b/pyproject.toml index df5ee99d..9f6dc30d 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "tesla" -version = "2.2.0" +version = "2.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"