diff --git a/CHANGELOG.md b/CHANGELOG.md index 9da5d057c..85d246590 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,10 +2,11 @@ Versions from 0.40 and up -## Ongoing +## v0.58.0 - Fix mypy errors in Core (not accepted in HA Core) - Introduce Snapshot testing for all platforms (requirement from HA Core) +- New Feature: add initial support for the Emma via plugwise [v1.8.0](https://github.com/plugwise/python-plugwise/releases/tag/v1.8.0) ## v0.57.6 diff --git a/custom_components/plugwise/manifest.json b/custom_components/plugwise/manifest.json index 9921fbc1d..cfd68486a 100644 --- a/custom_components/plugwise/manifest.json +++ b/custom_components/plugwise/manifest.json @@ -7,8 +7,7 @@ "integration_type": "hub", "iot_class": "local_polling", "loggers": ["plugwise"], - "requirements": ["plugwise==1.7.8" - ], - "version": "0.57.6", + "requirements": ["plugwise==1.8.0"], + "version": "0.58.0", "zeroconf": ["_plugwise._tcp.local."] } diff --git a/pyproject.toml b/pyproject.toml index 2c652d944..670cc8376 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [project] name = "plugwise-beta" -version = "0.57.6" +version = "0.58.0" description = "Plugwise beta custom-component" readme = "README.md" requires-python = ">=3.13"