diff --git a/CHANGELOG.md b/CHANGELOG.md index ce9e3750..3be8b0ae 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,13 @@ +## v1.2.0 (2021-10-18) +### Feature +* Add tesla_custom.api service ([`295ed08`](https://github.com/alandtse/tesla/commit/295ed08a69e403aec0f2a252bdeb42b06e46bba9)) + +### Documentation +* Fix changelog ([`e2e0f89`](https://github.com/alandtse/tesla/commit/e2e0f8920cac12612e1532de22e11bd5b45a37f7)) + ## v1.1.2 (2021-10-18) ### Fix * Bump teslajsonpy to 1.1.1 ([`ea5487`](https://github.com/alandtse/tesla/commit/ea5487642fbf51312198f66b32c46909a3adbc6b)) diff --git a/custom_components/tesla_custom/const.py b/custom_components/tesla_custom/const.py index 2855f87c..0cc90014 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.2" +VERSION = "1.2.0" 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 286c44ba..b824a983 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.2" + "version": "1.2.0" } diff --git a/pyproject.toml b/pyproject.toml index 4179082a..6f326617 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "tesla" -version = "1.1.2" +version = "1.2.0" description = "A fork of the Home Assistant tesla integration using a oauth proxy to login." authors = ["Alan D. Tse "] license = "Apache-2.0"