From e1e286cdc89786c38ecec35c38296f2bf691ccfa Mon Sep 17 00:00:00 2001 From: github-actions Date: Sun, 26 Mar 2023 18:17:53 +0000 Subject: [PATCH] [skip ci] 3.11.0 Automatically generated by python-semantic-release --- CHANGELOG.md | 8 ++++++++ custom_components/tesla_custom/const.py | 2 +- custom_components/tesla_custom/manifest.json | 2 +- pyproject.toml | 2 +- 4 files changed, 11 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 15d8ff3e..cc59b65a 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,14 @@ +## v3.11.0 (2023-03-26) +### Feature +* Split coordinator to avoid updating disabled cars and energy sites ([#552](https://github.com/alandtse/tesla/issues/552)) ([`41dfbcc`](https://github.com/alandtse/tesla/commit/41dfbccd07c1bf9b4300c8add77e9ae91c2a4820)) + +### Fix +* Use Home Assistant ssl context to avoid I/O ([#550](https://github.com/alandtse/tesla/issues/550)) ([`7386d43`](https://github.com/alandtse/tesla/commit/7386d430da675dd35c5d0bd131ca402fa92be4b2)) +* Use async_create_background_task to close the httpx client ([#551](https://github.com/alandtse/tesla/issues/551)) ([`de0d838`](https://github.com/alandtse/tesla/commit/de0d838c5d8fc098906fc2ab9427d820b2a4e4ed)) + ## v3.10.4 (2023-03-24) ### Fix * Fix sharing of addresses and media ([#545](https://github.com/alandtse/tesla/issues/545)) ([`0cc8319`](https://github.com/alandtse/tesla/commit/0cc8319db47cbe0427cf71347e710da53e01fa59)) diff --git a/custom_components/tesla_custom/const.py b/custom_components/tesla_custom/const.py index 8f537da9..74ea5d37 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.10.4" +VERSION = "3.11.0" 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 b92181b3..ea9bdbd6 100644 --- a/custom_components/tesla_custom/manifest.json +++ b/custom_components/tesla_custom/manifest.json @@ -23,5 +23,5 @@ "issue_tracker": "https://github.com/alandtse/tesla/issues", "loggers": ["teslajsonpy"], "requirements": ["teslajsonpy==3.8.0"], - "version": "3.10.4" + "version": "3.11.0" } diff --git a/pyproject.toml b/pyproject.toml index d3e579f9..2180752b 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "tesla" -version = "3.10.4" +version = "3.11.0" description = "A fork of the Home Assistant tesla integration using a oauth proxy to login." authors = ["Alan D. Tse "] license = "Apache-2.0"