diff --git a/src/CHANGELOG.md b/src/CHANGELOG.md index f856944..c68ecaa 100644 --- a/src/CHANGELOG.md +++ b/src/CHANGELOG.md @@ -1,3 +1,9 @@ +## v1.13.2 + +### 🐛 Bug Fixes: + +- Fix KeyError: 'authorizeResponse' in auth flow #318 + ## v1.13.1 ### 🐛 Bug Fixes: diff --git a/src/config.yaml b/src/config.yaml index 08cd921..265d965 100644 --- a/src/config.yaml +++ b/src/config.yaml @@ -1,6 +1,6 @@ name: "Volvo2Mqtt" description: "Volvo AAOS MQTT bridge" -version: "1.13.1" +version: "1.13.2" slug: "volvo2mqtt" init: false url: "https://github.com/Dielee/volvo2mqtt" diff --git a/src/const.py b/src/const.py index b4772ba..c5829e3 100644 --- a/src/const.py +++ b/src/const.py @@ -1,6 +1,6 @@ from config import settings -VERSION = "v1.13.1" +VERSION = "v1.13.2" OAUTH_TOKEN_URL = "https://volvoid.eu.volvocars.com/as/token.oauth2" OAUTH_AUTH_URL = "https://volvoid.eu.volvocars.com/as/authorization.oauth2"