diff --git a/CHANGELOG.md b/CHANGELOG.md index a2d1b4d..db5c4b6 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,16 @@ +## v5.0.0 (2024-03-10) + +### Fix + +* Some sensors should be "unavailable" when the tracker is offline ([#372](https://github.com/eifinger/hass-weenect/issues/372)) ([`067bd3b`](https://github.com/eifinger/hass-weenect/commit/067bd3ba3a710c8c7d10033fb810d7b43a482682)) + +### Breaking + +* some sensors should be "unavailable" when the tracker is offline ([#372](https://github.com/eifinger/hass-weenect/issues/372)) ([`067bd3b`](https://github.com/eifinger/hass-weenect/commit/067bd3ba3a710c8c7d10033fb810d7b43a482682)) + ## v4.1.0 (2024-03-06) ### Feature diff --git a/custom_components/weenect/const.py b/custom_components/weenect/const.py index f828ef5..3155051 100644 --- a/custom_components/weenect/const.py +++ b/custom_components/weenect/const.py @@ -6,7 +6,7 @@ # Base component constants NAME = "Weenect" DOMAIN = "weenect" -VERSION = "4.1.0" +VERSION = "5.0.0" ATTRIBUTION = "Data provided by https://my.weenect.com/" ISSUE_URL = "https://github.com/eifinger/hass-weenect/issues" diff --git a/custom_components/weenect/manifest.json b/custom_components/weenect/manifest.json index 54b29e5..9ccc074 100644 --- a/custom_components/weenect/manifest.json +++ b/custom_components/weenect/manifest.json @@ -15,5 +15,5 @@ "requirements": [ "aioweenect==1.1.1" ], - "version": "4.1.0" + "version": "5.0.0" } diff --git a/pyproject.toml b/pyproject.toml index 842eafc..c47f523 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -4,7 +4,7 @@ build-backend = "poetry.core.masonry.api" [tool.poetry] name = "hass-weenect" -version = "4.1.0" +version = "5.0.0" description = "Homeassistant Custom Component for Weenect" license = "MIT" authors = ["Kevin Stillhammer "]