From 5de422882b50b44c0fa1c6ba0e32c8d6692fcbfa Mon Sep 17 00:00:00 2001 From: Bouwe Westerdijk Date: Sat, 7 Feb 2026 15:08:23 +0100 Subject: [PATCH 1/3] Remove serial_number --- custom_components/plugwise_usb/__init__.py | 1 - custom_components/plugwise_usb/entity.py | 1 - 2 files changed, 2 deletions(-) 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, ) From 38fa218786d58bba66eed19ad4b394604d0586f4 Mon Sep 17 00:00:00 2001 From: Bouwe Westerdijk Date: Sat, 7 Feb 2026 15:09:55 +0100 Subject: [PATCH 2/3] Update CHANGELOG --- CHANGELOG.md | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index a0c7a8ff..7fc3b496 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,9 @@ # Changelog +## Ongoing + +- Remove serial_number, ZigBee MAC address is 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) From 08a2acd641b9237a145fbe689fa5df3168241fd7 Mon Sep 17 00:00:00 2001 From: Bouwe Westerdijk Date: Sun, 1 Mar 2026 15:47:39 +0100 Subject: [PATCH 3/3] Set to v0.59.1 release-version, update CHANGELOG --- CHANGELOG.md | 4 ++-- custom_components/plugwise_usb/manifest.json | 2 +- pyproject.toml | 2 +- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 7fc3b496..ac7fb650 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,8 +1,8 @@ # Changelog -## Ongoing +## v0.59.1 -- Remove serial_number, ZigBee MAC address is now shown in HA, via PR [400](https://github.com/plugwise/plugwise_usb-beta/pull/400) +- 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 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"