diff --git a/CHANGELOG.md b/CHANGELOG.md index 85d246590..d82801750 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,10 @@ Versions from 0.40 and up +## v0.58.1 + +- Improve detection of removed device(s) via plugwise [v1.8.1](https://github.com/plugwise/python-plugwise/releases/tag/v1.8.1) + ## v0.58.0 - Fix mypy errors in Core (not accepted in HA Core) diff --git a/custom_components/plugwise/manifest.json b/custom_components/plugwise/manifest.json index cfd68486a..0bb4ddedf 100644 --- a/custom_components/plugwise/manifest.json +++ b/custom_components/plugwise/manifest.json @@ -7,7 +7,7 @@ "integration_type": "hub", "iot_class": "local_polling", "loggers": ["plugwise"], - "requirements": ["plugwise==1.8.0"], - "version": "0.58.0", + "requirements": ["plugwise==1.8.1"], + "version": "0.58.1", "zeroconf": ["_plugwise._tcp.local."] } diff --git a/pyproject.toml b/pyproject.toml index 670cc8376..bfe72f395 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [project] name = "plugwise-beta" -version = "0.58.0" +version = "0.58.1" description = "Plugwise beta custom-component" readme = "README.md" requires-python = ">=3.13"