diff --git a/CHANGELOG.md b/CHANGELOG.md index 08611a2..b9d3a8f 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,12 @@ +## v3.3.0 (2024-02-27) + +### Feature + +* Allow disabling gps ([#363](https://github.com/eifinger/hass-weenect/issues/363)) ([`622c4f1`](https://github.com/eifinger/hass-weenect/commit/622c4f1de52014e39d2f2ef1e6b009a16cc6754f)) + ## v3.2.4 (2023-10-05) ### Fix diff --git a/custom_components/weenect/const.py b/custom_components/weenect/const.py index 9fa51cb..fcf9acc 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 = "3.2.4" +VERSION = "3.3.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 dc1feaa..402d8cd 100644 --- a/custom_components/weenect/manifest.json +++ b/custom_components/weenect/manifest.json @@ -15,5 +15,5 @@ "requirements": [ "aioweenect==1.1.1" ], - "version": "3.2.4" + "version": "3.3.0" } diff --git a/pyproject.toml b/pyproject.toml index 11abfff..095ea8a 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -4,7 +4,7 @@ build-backend = "poetry.core.masonry.api" [tool.poetry] name = "hass-weenect" -version = "3.2.4" +version = "3.3.0" description = "Homeassistant Custom Component for Weenect" license = "MIT" authors = ["Kevin Stillhammer "]