diff --git a/CHANGELOG.md b/CHANGELOG.md index 514f63ae..201e8ee5 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,16 @@ +## 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)) + +### Fix +* Create json sensors for vehicle data ([`d13f828`](https://github.com/alandtse/tesla/commit/d13f828c0088560df62208b7b05e26497481d78b)) + +### Breaking +* Online sensor will no longer have json vehicle data. Any scripts that relied on that json data will need to use the new vehicle data sensors. They will need to be enabled. ([`d13f828`](https://github.com/alandtse/tesla/commit/d13f828c0088560df62208b7b05e26497481d78b)) + ## v1.7.0 (2022-03-25) ### Feature * Force update when enabling polling switch ([`0aca7a8`](https://github.com/alandtse/tesla/commit/0aca7a8d3acbf3794415ce085c5695f5496129f2)) diff --git a/custom_components/tesla_custom/const.py b/custom_components/tesla_custom/const.py index 4c6e36bb..c3bc8607 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.7.0" +VERSION = "2.0.0" 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 00cd83e7..3fa63323 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.7.0" + "version": "2.0.0" } diff --git a/pyproject.toml b/pyproject.toml index 91b8adba..fb2d22b6 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "tesla" -version = "1.7.0" +version = "2.0.0" description = "A fork of the Home Assistant tesla integration using a oauth proxy to login." authors = ["Alan D. Tse "] license = "Apache-2.0"