diff --git a/CHANGELOG.md b/CHANGELOG.md index 484deca7..70320704 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,13 @@ +## v2.4.4 (2022-10-10) +### Fix +* Fix keyerror `charge_to_max_range` ([`0aa02c1`](https://github.com/alandtse/tesla/commit/0aa02c141680400b6ac10d43f8c99a474e379008)) + +### Documentation +* Update Danish Translation ([#269](https://github.com/alandtse/tesla/issues/269)) ([`73829e3`](https://github.com/alandtse/tesla/commit/73829e37c1e1a21715a069f6fed512b927d4a446)) + ## v2.4.3 (2022-09-11) ### Fix * Fix Chinese location offset ([#263](https://github.com/alandtse/tesla/issues/263)) ([`3feba57`](https://github.com/alandtse/tesla/commit/3feba57298de38a8fc3601e8d3080b97344f0a91)) diff --git a/custom_components/tesla_custom/const.py b/custom_components/tesla_custom/const.py index e325a3ad..db2c226f 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 = "2.4.3" +VERSION = "2.4.4" 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 1c017d61..e055448f 100644 --- a/custom_components/tesla_custom/manifest.json +++ b/custom_components/tesla_custom/manifest.json @@ -22,5 +22,5 @@ } ], "iot_class": "cloud_polling", - "version": "2.4.3" + "version": "2.4.4" } diff --git a/pyproject.toml b/pyproject.toml index bbcce5b3..1b54d4af 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "tesla" -version = "2.4.3" +version = "2.4.4" description = "A fork of the Home Assistant tesla integration using a oauth proxy to login." authors = ["Alan D. Tse "] license = "Apache-2.0"