Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

v3.3.5 #370

Merged
merged 3 commits into from
May 9, 2023
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
6 changes: 5 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Wiser Home Assistant Integration v3.3.4
# Wiser Home Assistant Integration v3.3.5

[![hacs_badge](https://img.shields.io/badge/HACS-Default-orange.svg?style=for-the-badge)](https://github.com/hacs/integration)
[![downloads](https://shields.io/github/downloads/asantaga/wiserHomeAssistantPlatform/latest/total?style=for-the-badge)](https://github.com/asantaga/wiserHomeAssistantPlatform)
Expand Down Expand Up @@ -619,6 +619,10 @@ There are two primary branches for this integration, `master` and `dev` . Master

## Change log

- 3.3.5
- Fix for eroneous current temp if lost signal with TRV - issue [#369](https://github.com/asantaga/wiserHomeAssistantPlatform/issues/369)
- Reduced log error level for failed update form hub to warning

- 3.3.4
- Fix issue with passive mode whereby it did not factor heating channels for multi channel hubs

Expand Down
2 changes: 1 addition & 1 deletion custom_components/wiser/const.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
URL_BASE = "/wiser"
WISER_CARD_FILENAMES = ["wiser-schedule-card.js", "wiser-zigbee-card.js"]

VERSION = "3.3.3"
VERSION = "3.3.5"
WISER_PLATFORMS = [
"climate",
"sensor",
Expand Down
2 changes: 1 addition & 1 deletion custom_components/wiser/coordinator.py
Original file line number Diff line number Diff line change
Expand Up @@ -152,7 +152,7 @@ async def async_update_data(self) -> WiserData:
WiserHubRESTError,
) as ex:
self.last_update_status = "Failed"
_LOGGER.error(ex)
_LOGGER.warning(ex)
except Exception as ex:
self.last_update_status = "Failed"
_LOGGER.error(ex)
Expand Down
4 changes: 2 additions & 2 deletions custom_components/wiser/manifest.json
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
"documentation": "https://github.com/asantaga/wiserHomeAssistantPlatform/blob/master/README.md",
"iot_class": "local_polling",
"issue_tracker": "https://github.com/asantaga/wiserHomeAssistantPlatform/issues",
"requirements": ["aioWiserHeatAPI==1.3.3"],
"version": "3.3.4",
"requirements": ["aioWiserHeatAPI==1.3.4"],
"version": "3.3.5",
"zeroconf": [{ "type": "_http._tcp.local.", "name": "wiser*" }]
}