diff --git a/src/CHANGELOG.md b/src/CHANGELOG.md index 015df5e..d1efb08 100644 --- a/src/CHANGELOG.md +++ b/src/CHANGELOG.md @@ -1,3 +1,9 @@ +## v1.9.0 +### 🚀 Features: + +- Add check for supported commands +- Add Engine start/stop and Engine runtime minutes for supported cars + ## v1.8.19 ### 🐛 Bug Fixes: diff --git a/src/config.yaml b/src/config.yaml index a97d29f..73645ba 100644 --- a/src/config.yaml +++ b/src/config.yaml @@ -1,6 +1,6 @@ name: "Volvo2Mqtt" description: "Volvo AAOS MQTT bridge" -version: "1.8.19" +version: "1.9.0" slug: "volvo2mqtt" init: false url: "https://github.com/Dielee/volvo2mqtt" diff --git a/src/const.py b/src/const.py index c8a1fd2..7850299 100644 --- a/src/const.py +++ b/src/const.py @@ -1,6 +1,6 @@ from config import settings -VERSION = "v1.8.19" +VERSION = "v1.9.0" OAUTH_URL = "https://volvoid.eu.volvocars.com/as/token.oauth2" VEHICLES_URL = "https://api.volvocars.com/connected-vehicle/v2/vehicles"