diff --git a/CHANGES.md b/CHANGES.md index de06a6e..f26ce44 100644 --- a/CHANGES.md +++ b/CHANGES.md @@ -1,5 +1,9 @@ # Change log for Charge Amps for Home Assistant +## 1.10.0 (2024-09-20) + +- Support token refresh + ## 1.9.4 (2024-05-03) - Update light color modes diff --git a/custom_components/chargeamps/const.py b/custom_components/chargeamps/const.py index 268d97e..0b13a09 100644 --- a/custom_components/chargeamps/const.py +++ b/custom_components/chargeamps/const.py @@ -5,7 +5,7 @@ # Base component constants DOMAIN = "chargeamps" DOMAIN_DATA = f"{DOMAIN}_data" -VERSION = "1.7.0" +VERSION = "1.10.0" PLATFORMS = ["sensor", "switch", "light"] ISSUE_URL = "https://github.com/kirei/hass-chargeamps/issues" CONFIGURATION_URL = "https://my.charge.space" diff --git a/custom_components/chargeamps/manifest.json b/custom_components/chargeamps/manifest.json index 04e1fe2..651d84f 100644 --- a/custom_components/chargeamps/manifest.json +++ b/custom_components/chargeamps/manifest.json @@ -5,14 +5,12 @@ "@kirei" ], "config_flow": false, - "dependencies": [ - - ], + "dependencies": [], "documentation": "https://github.com/kirei/hass-chargeamps", "iot_class": "cloud_polling", "issue_tracker": "https://github.com/kirei/hass-chargeamps/issues", "requirements": [ - "chargeamps==1.6.1", + "chargeamps==1.8.0", "dataclasses-json>=0.5.2", "homeassistant>=2022.11.0" ],