diff --git a/CHANGELOG.md b/CHANGELOG.md index 422ad3b..6a61bd4 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,15 +1,21 @@ # Changelog -## v0.2.2 -Unreleased +## v0.3.0 +Released 16 October 2022 Highlights: -* Updated: aiobiketrax v0.2.2a1 to address several API issues. +* Updated: aiobiketrax v0.3.0 to address several API issues. +* Updated: reduce device data polling from 5 minutes to 15 minutes (does not affect WebSocket updates). +* Fixed: proper unit system check. +* Improved: login feedback in case of authentication, connection or device issues. +* Improved: increased logging. -The full list of commits can be found [here](https://github.com/basilfx/homeassistant-aiobiketrax/compare/v0.2.1...v0.2.2). +The full list of commits can be found [here](https://github.com/basilfx/homeassistant-aiobiketrax/compare/v0.2.1...v0.3.0). + +This release supersedes v0.2.2a1. ## v0.2.1 -Release 27 August 2022 +Released 27 August 2022 Highlights: * Updated: aiobiketrax v0.2.1 to fix an issue with the websocket reconnect. @@ -17,7 +23,7 @@ Highlights: The full list of commits can be found [here](https://github.com/basilfx/homeassistant-aiobiketrax/compare/v0.2.0...v0.2.1). ## v0.2.0 -Release 10 August 2022 +Released 10 August 2022 Highlights: * Updated: aiobiketrax v0.2.0 to address several API issues. diff --git a/custom_components/biketrax/manifest.json b/custom_components/biketrax/manifest.json index 5cad8be..0b5d092 100644 --- a/custom_components/biketrax/manifest.json +++ b/custom_components/biketrax/manifest.json @@ -10,6 +10,6 @@ "name": "PowUnity BikeTrax", "requirements": ["aiobiketrax==0.3.0"], "ssdp": [], - "version": "0.2.2a1", + "version": "0.3.0", "zeroconf": [] } diff --git a/pyproject.toml b/pyproject.toml index 5d5e353..352a981 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -14,7 +14,7 @@ profile = "black" [tool.poetry] name = "homeassistant-biketrax" -version = "0.2.2a1" +version = "0.3.0" description = "Custom component for the PowUnity BikeTrax integration for Home Assistant." authors = ["Bas Stottelaar "]