Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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)
Expand Down
1 change: 0 additions & 1 deletion custom_components/plugwise_usb/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -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),
)

Expand Down
1 change: 0 additions & 1 deletion custom_components/plugwise_usb/entity.py
Original file line number Diff line number Diff line change
Expand Up @@ -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,
)
Expand Down
2 changes: 1 addition & 1 deletion custom_components/plugwise_usb/manifest.json
Original file line number Diff line number Diff line change
Expand Up @@ -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"
}
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -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"
Expand Down
Loading