diff --git a/CHANGELOG.md b/CHANGELOG.md index 52ed9124..be9755dc 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,10 @@ +## v3.5.0 (2022-12-01) +### Feature +* Add remote start button ([#385](https://github.com/alandtse/tesla/issues/385)) ([`42b7117`](https://github.com/alandtse/tesla/commit/42b7117fe16209ccf23070b22b58e576cd2709a8)) + ## v3.4.0 (2022-11-30) ### Feature * Add tpms pressure sensors ([#376](https://github.com/alandtse/tesla/issues/376)) ([`b2cbe95`](https://github.com/alandtse/tesla/commit/b2cbe9575ab6e2c4a780ec15f9ebc57f45235fa5)) diff --git a/custom_components/tesla_custom/const.py b/custom_components/tesla_custom/const.py index 6d12b960..e00030eb 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.4.0" +VERSION = "3.5.0" 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 9eaea893..3f2c70c0 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.4.0" + "version": "3.5.0" } \ No newline at end of file diff --git a/pyproject.toml b/pyproject.toml index 0a1aa2d5..d8a7cd1a 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "tesla" -version = "3.4.0" +version = "3.5.0" description = "A fork of the Home Assistant tesla integration using a oauth proxy to login." authors = ["Alan D. Tse "] license = "Apache-2.0"