diff --git a/CHANGELOG.md b/CHANGELOG.md index db5c4b6..4ffc07d 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,12 @@ +## v5.1.0 (2024-03-10) + +### Feature + +* Add extra attributes to device_tracker ([#371](https://github.com/eifinger/hass-weenect/issues/371)) ([`cac4af9`](https://github.com/eifinger/hass-weenect/commit/cac4af9241eab41a48a4bbf495df4eb913b808b7)) + ## v5.0.0 (2024-03-10) ### Fix diff --git a/custom_components/weenect/const.py b/custom_components/weenect/const.py index 3155051..57b8b56 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 = "5.0.0" +VERSION = "5.1.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 9ccc074..e07c019 100644 --- a/custom_components/weenect/manifest.json +++ b/custom_components/weenect/manifest.json @@ -15,5 +15,5 @@ "requirements": [ "aioweenect==1.1.1" ], - "version": "5.0.0" + "version": "5.1.0" } diff --git a/pyproject.toml b/pyproject.toml index c47f523..186c98c 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -4,7 +4,7 @@ build-backend = "poetry.core.masonry.api" [tool.poetry] name = "hass-weenect" -version = "5.0.0" +version = "5.1.0" description = "Homeassistant Custom Component for Weenect" license = "MIT" authors = ["Kevin Stillhammer "]