diff --git a/CHANGELOG.md b/CHANGELOG.md index a0c7a8ff..ac7fb650 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,9 @@ # Changelog +## v0.59.1 + +- Remove device serial_number, ZigBee MAC addresses are now shown in HA, via PR [400](https://github.com/plugwise/plugwise_usb-beta/pull/400) + ## v0.59.0 - New Feature: implement reconfiguring of the Stick path via PR [407](https://github.com/plugwise/plugwise_usb-beta/pull/407) diff --git a/custom_components/plugwise_usb/__init__.py b/custom_components/plugwise_usb/__init__.py index 295aac03..7f71786e 100644 --- a/custom_components/plugwise_usb/__init__.py +++ b/custom_components/plugwise_usb/__init__.py @@ -75,7 +75,6 @@ def _async_migrate_entity_entry( manufacturer="Plugwise", model="Stick", name=str(api_stick.name), - serial_number=str(api_stick.mac_stick), sw_version=str(api_stick.firmware), ) diff --git a/custom_components/plugwise_usb/entity.py b/custom_components/plugwise_usb/entity.py index aa47e050..045da4bb 100644 --- a/custom_components/plugwise_usb/entity.py +++ b/custom_components/plugwise_usb/entity.py @@ -60,7 +60,6 @@ def device_info(self) -> DeviceInfo: model=str(self._node_info.model), model_id=self._node_info.model_type, name=str(self._node_info.name), - serial_number=str(self._node_info.mac), sw_version=str(self._node_info.firmware), via_device=self._via_device, ) diff --git a/custom_components/plugwise_usb/manifest.json b/custom_components/plugwise_usb/manifest.json index 50b1fe8b..2d89fcf2 100644 --- a/custom_components/plugwise_usb/manifest.json +++ b/custom_components/plugwise_usb/manifest.json @@ -10,5 +10,5 @@ "issue_tracker": "https://github.com/plugwise/python-plugwise-usb/issues", "loggers": ["plugwise_usb"], "requirements": ["plugwise-usb==0.47.2"], - "version": "0.59.0" + "version": "0.59.1" } diff --git a/pyproject.toml b/pyproject.toml index 3605b7b8..81ec9e9b 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [project] name = "plugwise_usb-beta" -version = "0.59.0" +version = "0.59.1" description = "Plugwise USB custom_component (BETA)" readme = "README.md" requires-python = ">=3.13"