diff --git a/CHANGELOG.md b/CHANGELOG.md index 1ee9da6f..d2bbe2a8 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,10 @@ +## v3.12.2 (2023-05-06) +### Fix +* Update arrival with earlier charge complete and arrival times ([#575](https://github.com/alandtse/tesla/issues/575)) ([`92da756`](https://github.com/alandtse/tesla/commit/92da7566d8ef21378cf143de84865e6ca3938c4c)) + ## v3.12.1 (2023-04-28) ### Fix * Fix multiple cars for TeslaMate ([#582](https://github.com/alandtse/tesla/issues/582)) ([`9e9b949`](https://github.com/alandtse/tesla/commit/9e9b949709acdfc79517b4b0d9c245134ed42825)) diff --git a/custom_components/tesla_custom/const.py b/custom_components/tesla_custom/const.py index bffdb86c..3ffa010d 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.12.1" +VERSION = "3.12.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 7048ae56..f9b6e68b 100644 --- a/custom_components/tesla_custom/manifest.json +++ b/custom_components/tesla_custom/manifest.json @@ -24,5 +24,5 @@ "issue_tracker": "https://github.com/alandtse/tesla/issues", "loggers": ["teslajsonpy"], "requirements": ["teslajsonpy==3.8.1"], - "version": "3.12.1" + "version": "3.12.2" } diff --git a/pyproject.toml b/pyproject.toml index 3eb31c1e..2aa514b1 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "tesla" -version = "3.12.1" +version = "3.12.2" description = "A fork of the Home Assistant tesla integration using a oauth proxy to login." authors = ["Alan D. Tse "] license = "Apache-2.0"