diff --git a/CHANGELOG.md b/CHANGELOG.md new file mode 100644 index 0000000..0bea6ff --- /dev/null +++ b/CHANGELOG.md @@ -0,0 +1,20 @@ +# Changelog + +## 0.7.0 + +Major refactor of the component +* Objective: Update the component to the "HA way" using devices and entities +* Zaptec devices (installation, circuit and charger) use name set in Zaptec portal +* Added entities for each device. No need for using attrs and templates. +* Added support for selecting which chargers to add to zaptec +* Added support for adding an optional prefix to the device names +* Fixed adjustable charging currents, all or individual three phase. +* Added support for authorization and deauthorization of charging using the + Zaptec internal *native* authentication +* Zaptec produces energy sensors that can be used with HA energy dashboard +* Refactor services in order to make them easier to use with the service call UIs +* Hardnened the cloud connection robustness (better timeout, better data and + error handling) +* Use data update coordinator for polling entities +* Added "Download diagnostics" +* Bugfixes and documentation update diff --git a/custom_components/zaptec/const.py b/custom_components/zaptec/const.py index 33fb9dc..82e40ea 100644 --- a/custom_components/zaptec/const.py +++ b/custom_components/zaptec/const.py @@ -2,7 +2,7 @@ from __future__ import annotations NAME = "zaptec" -VERSION = "0.0.6b2" +VERSION = "0.7.0" ISSUEURL = "https://github.com/custom-components/zaptec/issues" DOMAIN = "zaptec" diff --git a/custom_components/zaptec/manifest.json b/custom_components/zaptec/manifest.json index a29145e..872b1a5 100644 --- a/custom_components/zaptec/manifest.json +++ b/custom_components/zaptec/manifest.json @@ -10,5 +10,5 @@ ], "iot_class": "cloud_polling", "requirements": ["azure-servicebus", "pydantic"], - "version": "0.0.6b2" + "version": "0.7.0" }