diff --git a/CHANGELOG.md b/CHANGELOG.md index 59968d25..773f25bb 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,13 @@ +## v3.7.1 (2022-12-18) +### Fix +* Fix seat map for auto climate command ([#435](https://github.com/alandtse/tesla/issues/435)) ([`c96e5b0`](https://github.com/alandtse/tesla/commit/c96e5b0ac2794f7569846af5cf78f6f8f6545e3d)) + +### Documentation +* Update readme with new features ([`8a518c9`](https://github.com/alandtse/tesla/commit/8a518c93b05f31f2a0c9817d624a4b13dac944fc)) + ## v3.7.0 (2022-12-11) ### Feature * Add destination location entities ([#423](https://github.com/alandtse/tesla/issues/423)) ([`a4ec318`](https://github.com/alandtse/tesla/commit/a4ec318eb44838c6a6ad0164369e98aa563aff32)) diff --git a/custom_components/tesla_custom/const.py b/custom_components/tesla_custom/const.py index 0dd033f9..ddae5669 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.7.0" +VERSION = "3.7.1" 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 38532f07..cfbd8998 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.7.0" + "version": "3.7.1" } \ No newline at end of file diff --git a/pyproject.toml b/pyproject.toml index e1019a4e..f0617614 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "tesla" -version = "3.7.0" +version = "3.7.1" description = "A fork of the Home Assistant tesla integration using a oauth proxy to login." authors = ["Alan D. Tse "] license = "Apache-2.0"