From 12238532088896826003ab0391c72faa93550624 Mon Sep 17 00:00:00 2001 From: Linus Dietz <45101649+Dielee@users.noreply.github.com> Date: Tue, 21 Nov 2023 08:59:25 +0100 Subject: [PATCH] Bump version --- src/CHANGELOG.md | 7 +++++++ src/config.yaml | 2 +- src/const.py | 2 +- 3 files changed, 9 insertions(+), 2 deletions(-) diff --git a/src/CHANGELOG.md b/src/CHANGELOG.md index 43d9711..815a094 100644 --- a/src/CHANGELOG.md +++ b/src/CHANGELOG.md @@ -1,3 +1,10 @@ +## v1.8.16 +### 🚀 Features: + +- Add `Average energy consumption`, `Distance to empty battery` and `Washer fluid level` sensors +- Support force update for `Backend state` Sensor +- Use cached requests for fuel endpoint + ## v1.8.15 ### 🚀 Features: diff --git a/src/config.yaml b/src/config.yaml index fd190c8..f37a47f 100644 --- a/src/config.yaml +++ b/src/config.yaml @@ -1,6 +1,6 @@ name: "Volvo2Mqtt" description: "Volvo AAOS MQTT bridge" -version: "1.8.15" +version: "1.8.16" slug: "volvo2mqtt" init: false url: "https://github.com/Dielee/volvo2mqtt" diff --git a/src/const.py b/src/const.py index eb07b25..9876676 100644 --- a/src/const.py +++ b/src/const.py @@ -1,6 +1,6 @@ from config import settings -VERSION = "v1.8.15" +VERSION = "v1.8.16" OAUTH_URL = "https://volvoid.eu.volvocars.com/as/token.oauth2" VEHICLES_URL = "https://api.volvocars.com/connected-vehicle/v1/vehicles"