Skip to content

Commit a85c339

Browse files
authored
Merge pull request #834 from plugwise/Fix-833
Bugfix for Issue 833
2 parents 145a952 + cedda36 commit a85c339

File tree

4 files changed

+6
-5
lines changed

4 files changed

+6
-5
lines changed

CHANGELOG.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,9 @@
22

33
Versions from 0.40 and up
44

5-
## Ongoing
5+
## v0.57.1
66

7+
- Bugfix for Stretch (Issue #833) via plugwise [v1.7.2](https://github.com/plugwise/python-plugwise/releases/tag/v1.7.2)
78
- Implement HA Core PR [#138039](https://github.com/home-assistant/core/pull/138039)
89

910
## v0.57.0

custom_components/plugwise/config_flow.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -143,7 +143,7 @@ async def verify_connection(
143143
errors[CONF_BASE] = "response_error"
144144
except UnsupportedDeviceError:
145145
errors[CONF_BASE] = "unsupported"
146-
except Exception: # noqa: BLE001
146+
except Exception:
147147
_LOGGER.exception(
148148
"Unknown exception while verifying connection with your Plugwise Smile"
149149
)

custom_components/plugwise/manifest.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
"integration_type": "hub",
88
"iot_class": "local_polling",
99
"loggers": ["plugwise"],
10-
"requirements": ["plugwise==1.7.1"],
11-
"version": "0.57.0",
10+
"requirements": ["plugwise==1.7.2"],
11+
"version": "0.57.1",
1212
"zeroconf": ["_plugwise._tcp.local."]
1313
}

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[project]
22
name = "plugwise-beta"
3-
version = "0.56.1"
3+
version = "0.57.1"
44
description = "Plugwise beta custom-component"
55
readme = "README.md"
66
requires-python = ">=3.12"

0 commit comments

Comments
 (0)