diff --git a/CHANGELOG.md b/CHANGELOG.md index 7208874a..576da9b2 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,10 @@ +## v1.1.1 (2021-10-13) +### Fix +* Bump teslajsonpy to 1.0.1 ([`f41061c`](https://github.com/alandtse/tesla/commit/f41061c2ee0217a73af71cd0275f48290c05c11e)) + ## v1.1.0 (2021-10-11) ### Feature * Add support for Energy Sites ([#58](https://github.com/alandtse/tesla/issues/58)) ([`92e8672`](https://github.com/alandtse/tesla/commit/92e86723c46eb2c0f03314196a8f8a0f8e9b66a4)) diff --git a/custom_components/tesla_custom/const.py b/custom_components/tesla_custom/const.py index a1b9ac77..2f969b55 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 = "1.1.0" +VERSION = "1.1.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 5772091a..b5f29a60 100644 --- a/custom_components/tesla_custom/manifest.json +++ b/custom_components/tesla_custom/manifest.json @@ -22,5 +22,5 @@ } ], "iot_class": "cloud_polling", - "version": "1.1.0" + "version": "1.1.1" } diff --git a/pyproject.toml b/pyproject.toml index 57aeb4eb..9fe7d249 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "tesla" -version = "1.1.0" +version = "1.1.1" description = "A fork of the Home Assistant tesla integration using a oauth proxy to login." authors = ["Alan D. Tse "] license = "Apache-2.0"