diff --git a/CHANGELOG.md b/CHANGELOG.md index 70320704..f57ee040 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,16 @@ +## v3.0.0 (2022-10-22) +### Feature +* Rewrite to add support for energy sites ([#250](https://github.com/alandtse/tesla/issues/250)) ([`6a1f9c3`](https://github.com/alandtse/tesla/commit/6a1f9c3cb663ed5543a2e778bdbaf750699b1438)) + +### Breaking +* This is a rewrite. Multiple entitiy_ids were changed. It is recommended you remove and reinstall. Changed trunk, frunk and charger door from lock to cover entities. Created separate sensor (`TeslaCarChargerPower` class) for charger power. Moved charger amps, charger volts and charger phases extra state attributes to the new charger power sensor. Moved added range extra state attributes to the charger energy added sensor. ([`6a1f9c3`](https://github.com/alandtse/tesla/commit/6a1f9c3cb663ed5543a2e778bdbaf750699b1438)) + +### Documentation +* Remove duplicate info from README ([#278](https://github.com/alandtse/tesla/issues/278)) ([`616d3a5`](https://github.com/alandtse/tesla/commit/616d3a5761432a06589bbad3f9bbe886f3621384)) + ## v2.4.4 (2022-10-10) ### Fix * Fix keyerror `charge_to_max_range` ([`0aa02c1`](https://github.com/alandtse/tesla/commit/0aa02c141680400b6ac10d43f8c99a474e379008)) diff --git a/custom_components/tesla_custom/const.py b/custom_components/tesla_custom/const.py index 45dbaf15..46b67584 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.4" +VERSION = "3.0.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 084325f0..1e1901b5 100644 --- a/custom_components/tesla_custom/manifest.json +++ b/custom_components/tesla_custom/manifest.json @@ -28,5 +28,5 @@ } ], "iot_class": "cloud_polling", - "version": "2.4.4" + "version": "3.0.0" } \ No newline at end of file diff --git a/pyproject.toml b/pyproject.toml index e59d01cd..513b6409 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "tesla" -version = "2.4.4" +version = "3.0.0" description = "A fork of the Home Assistant tesla integration using a oauth proxy to login." authors = ["Alan D. Tse "] license = "Apache-2.0"