diff --git a/CHANGELOG.md b/CHANGELOG.md index 8d764489..85b6124b 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,13 @@ +## v1.3.0 (2021-10-21) +### Feature +* Bump teslajsonpy to 1.2.0 ([`7a1a1b6`](https://github.com/alandtse/tesla/commit/7a1a1b6f60c8cb7e907fcebe9f399597572b7eeb)) + +### Documentation +* Add Japanese translations ([#75](https://github.com/alandtse/tesla/issues/75)) ([`b938ab8`](https://github.com/alandtse/tesla/commit/b938ab8b47b41bfc641c846c27e5ecfd19514aec)) + ## v1.2.1 (2021-10-19) ### Fix * Bump teslajsonpy to 1.1.2 ([`697bb3e`](https://github.com/alandtse/tesla/commit/697bb3e4ca4c1823189f204a375f44a18ba1f875)) diff --git a/custom_components/tesla_custom/const.py b/custom_components/tesla_custom/const.py index 736837cb..472dac98 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 = "1.2.1" +VERSION = "1.3.0" CONF_WAKE_ON_START = "enable_wake_on_start" CONF_EXPIRATION = "expiration" DOMAIN = "tesla_custom" diff --git a/custom_components/tesla_custom/manifest.json b/custom_components/tesla_custom/manifest.json index c1981d55..aad819c0 100644 --- a/custom_components/tesla_custom/manifest.json +++ b/custom_components/tesla_custom/manifest.json @@ -22,5 +22,5 @@ } ], "iot_class": "cloud_polling", - "version": "1.2.1" + "version": "1.3.0" } diff --git a/pyproject.toml b/pyproject.toml index 7a9f01da..a2b2d4d2 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "tesla" -version = "1.2.1" +version = "1.3.0" description = "A fork of the Home Assistant tesla integration using a oauth proxy to login." authors = ["Alan D. Tse "] license = "Apache-2.0"