diff --git a/CHANGELOG.md b/CHANGELOG.md index 201e8ee5..fc33d8a7 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,10 @@ +## v2.0.1 (2022-04-05) +### Fix +* Bump teslajsonpy to 2.0.1 ([`bab521c`](https://github.com/alandtse/tesla/commit/bab521c42bbfc62a11c5bbc0c25c5d6e5bd64e29)) + ## v2.0.0 (2022-03-27) ### Feature * Add trigger homelink button (disabled by default) ([#168](https://github.com/alandtse/tesla/issues/168)) ([`0a39370`](https://github.com/alandtse/tesla/commit/0a39370b40cdedaf60e88018defd2bf52afc6ea5)) diff --git a/custom_components/tesla_custom/const.py b/custom_components/tesla_custom/const.py index c3bc8607..56f5af57 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.0" +VERSION = "2.0.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 5a0b9933..a72302bb 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.0" + "version": "2.0.1" } diff --git a/pyproject.toml b/pyproject.toml index b9d50c3f..5e4a6fc9 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "tesla" -version = "2.0.0" +version = "2.0.1" description = "A fork of the Home Assistant tesla integration using a oauth proxy to login." authors = ["Alan D. Tse "] license = "Apache-2.0"