diff --git a/src/CHANGELOG.md b/src/CHANGELOG.md index d50a783..e7e01f9 100644 --- a/src/CHANGELOG.md +++ b/src/CHANGELOG.md @@ -1,3 +1,8 @@ +## v1.8.21 +### 🐛 Bug Fixes: + +- Try to fix addon build #146 + ## v1.8.20 ### 🐛 Bug Fixes: diff --git a/src/Dockerfile b/src/Dockerfile index e12b1e4..ebac5bd 100644 --- a/src/Dockerfile +++ b/src/Dockerfile @@ -11,7 +11,7 @@ WORKDIR /volvoAAOS2mqtt RUN wget --no-cache https://raw.githubusercontent.com/Dielee/volvo2mqtt/main/requirements.txt # install dependencies -RUN pip install -r requirements.txt +RUN pip install -r requirements.txt --break-system-packages # copy the content of the local src directory to the working directory COPY / . diff --git a/src/config.yaml b/src/config.yaml index 36dfb8c..6d86f8b 100644 --- a/src/config.yaml +++ b/src/config.yaml @@ -1,6 +1,6 @@ name: "Volvo2Mqtt" description: "Volvo AAOS MQTT bridge" -version: "1.8.20" +version: "1.8.21" slug: "volvo2mqtt" init: false url: "https://github.com/Dielee/volvo2mqtt" diff --git a/src/const.py b/src/const.py index 40e2915..71c9310 100644 --- a/src/const.py +++ b/src/const.py @@ -1,6 +1,6 @@ from config import settings -VERSION = "v1.8.20" +VERSION = "v1.8.21" OAUTH_URL = "https://volvoid.eu.volvocars.com/as/token.oauth2" VEHICLES_URL = "https://api.volvocars.com/connected-vehicle/v2/vehicles"