Skip to content

Commit

Permalink
Merge pull request #370 from asantaga/dev
Browse files Browse the repository at this point in the history
v3.3.5
  • Loading branch information
msp1974 authored May 9, 2023
2 parents f174fb1 + 6bbb26a commit fd006e4
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 5 deletions.
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*" }]
}

0 comments on commit fd006e4

Please sign in to comment.