From 7c32ca59be558e1cd8d76bf8db95e9157a4515ee Mon Sep 17 00:00:00 2001 From: linus Date: Fri, 15 May 2026 09:29:01 +0200 Subject: [PATCH] Add build.yaml for homeassistant version > 2026.04.X --- src/CHANGELOG.md | 6 ++++++ src/build.yaml | 6 ++++++ src/config.yaml | 2 +- src/const.py | 2 +- 4 files changed, 14 insertions(+), 2 deletions(-) create mode 100644 src/build.yaml diff --git a/src/CHANGELOG.md b/src/CHANGELOG.md index f58ae94..46f4b2b 100644 --- a/src/CHANGELOG.md +++ b/src/CHANGELOG.md @@ -1,3 +1,9 @@ +## v1.13.5 + +### 🐛 Bug Fixes: + +- Add build.yaml for homeassistant version > 2026.04.X + ## v1.13.4 ### 🐛 Bug Fixes: diff --git a/src/build.yaml b/src/build.yaml new file mode 100644 index 0000000..abca1cd --- /dev/null +++ b/src/build.yaml @@ -0,0 +1,6 @@ +build_from: + amd64: ghcr.io/home-assistant/base:latest + aarch64: ghcr.io/home-assistant/base:latest + armv7: ghcr.io/home-assistant/base:latest + armhf: ghcr.io/home-assistant/base:latest + i386: ghcr.io/home-assistant/base:latest diff --git a/src/config.yaml b/src/config.yaml index 7e5378f..bde87ce 100644 --- a/src/config.yaml +++ b/src/config.yaml @@ -1,6 +1,6 @@ name: "Volvo2Mqtt" description: "Volvo AAOS MQTT bridge" -version: "1.13.4" +version: "1.13.5" slug: "volvo2mqtt" init: false url: "https://github.com/Dielee/volvo2mqtt" diff --git a/src/const.py b/src/const.py index 50b66c8..d84bdd1 100644 --- a/src/const.py +++ b/src/const.py @@ -1,6 +1,6 @@ from config import settings -VERSION = "v1.13.4" +VERSION = "v1.13.5" OAUTH_TOKEN_URL = "https://volvoid.eu.volvocars.com/as/token.oauth2" OAUTH_AUTH_URL = "https://volvoid.eu.volvocars.com/as/authorization.oauth2"