diff --git a/CHANGELOG.md b/CHANGELOG.md index 021929c1..4cd2d8d9 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,10 @@ +## v3.0.2 (2022-10-27) +### Fix +* Add missing close_cover for frunks ([`3257775`](https://github.com/alandtse/tesla/commit/325777598d13b0e2ac3b817fb4996ab60e019b2f)) + ## v3.0.1 (2022-10-24) ### Fix * Add open feature for frunk ([`769858f`](https://github.com/alandtse/tesla/commit/769858f442a65ee0a5bd95ae7b6d797b02fc8088)) diff --git a/custom_components/tesla_custom/const.py b/custom_components/tesla_custom/const.py index 5c44bc89..eec5ce9c 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 = "3.0.1" +VERSION = "3.0.2" CONF_EXPIRATION = "expiration" CONF_INCLUDE_VEHICLES = "include_vehicles" CONF_INCLUDE_ENERGYSITES = "include_energysites" diff --git a/custom_components/tesla_custom/manifest.json b/custom_components/tesla_custom/manifest.json index 409f9f34..e7f3ab53 100644 --- a/custom_components/tesla_custom/manifest.json +++ b/custom_components/tesla_custom/manifest.json @@ -28,5 +28,5 @@ } ], "iot_class": "cloud_polling", - "version": "3.0.1" + "version": "3.0.2" } \ No newline at end of file diff --git a/pyproject.toml b/pyproject.toml index 079d8976..8d79e39b 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "tesla" -version = "3.0.1" +version = "3.0.2" description = "A fork of the Home Assistant tesla integration using a oauth proxy to login." authors = ["Alan D. Tse "] license = "Apache-2.0"