diff --git a/CHANGELOG.md b/CHANGELOG.md index 6218148c..cefe4571 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,10 @@ +## v0.1.2 (2021-04-30) +### Fix +* Fix directory in zip ([`d8b4fc6`](https://github.com/alandtse/tesla/commit/d8b4fc61ebd49f15ff41b41797f2c9fe1a1a5eb2)) + ## v0.1.1 (2021-04-30) ### Fix * Change structure to not override core ([`f173b68`](https://github.com/alandtse/tesla/commit/f173b6823a7c0f259ac2c5a94341820c6ae83fbf)) diff --git a/custom_components/tesla_custom/const.py b/custom_components/tesla_custom/const.py index a5b38f49..bac3364a 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 = "0.1.1" +VERSION = "0.1.2" 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 b71879a4..2eb0c6c8 100644 --- a/custom_components/tesla_custom/manifest.json +++ b/custom_components/tesla_custom/manifest.json @@ -22,5 +22,5 @@ } ], "iot_class": "cloud_polling", - "version": "0.1.1" + "version": "0.1.2" } diff --git a/pyproject.toml b/pyproject.toml index bcaad677..a7d183b0 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "tesla" -version = "0.1.1" +version = "0.1.2" description = "A fork of the Home Assistant tesla integration using a oauth proxy to login." authors = ["Alan D. Tse "] license = "Apache-2.0"