diff --git a/src/CHANGELOG.md b/src/CHANGELOG.md index 71095e2..3b96431 100644 --- a/src/CHANGELOG.md +++ b/src/CHANGELOG.md @@ -1,3 +1,9 @@ +## v1.13.1 + +### 🐛 Bug Fixes: + +- Fix missing charging system state `error` #314 + ## v1.13.0 ### 🚀 Features: diff --git a/src/const.py b/src/const.py index 4a5d04e..b4772ba 100644 --- a/src/const.py +++ b/src/const.py @@ -1,6 +1,6 @@ from config import settings -VERSION = "v1.13.0" +VERSION = "v1.13.1" OAUTH_TOKEN_URL = "https://volvoid.eu.volvocars.com/as/token.oauth2" OAUTH_AUTH_URL = "https://volvoid.eu.volvocars.com/as/authorization.oauth2" @@ -61,7 +61,8 @@ availability_topic = "volvoAAOS2mqtt/availability" charging_system_states = {"CHARGING": "Charging", "IDLE": "Idle", "FAULT": "Fault", "UNSPECIFIED": "Unspecified", - "DONE": "Done", "SCHEDULED": "Scheduled"} + "DONE": "Done", "SCHEDULED": "Scheduled", "ERROR": "Error", + "DISCHARGING": "Discharging"} charging_connection_states = {"DISCONNECTED": "Disconnected", "UNSPECIFIED": "Unspecified", "FAULT": "Fault", "CONNECTED": "Connected"}