Skip to content
This repository has been archived by the owner on Mar 19, 2024. It is now read-only.

Commit

Permalink
1 9 0 (#93)
Browse files Browse the repository at this point in the history
1.9.0 release
  • Loading branch information
thomasgermain authored Sep 3, 2021
1 parent 4a09262 commit cdab4e8
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 4 deletions.
5 changes: 3 additions & 2 deletions custom_components/multimatic/manifest.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
"documentation": "https://github.com/thomasgermain/vaillant-component",
"issue_tracker": "https://github.com/thomasgermain/vaillant-component/issues",
"requirements": [
"pymultimatic==0.6.0"
"pymultimatic==0.6.1"
],
"ssdp": [],
"zeroconf": [],
Expand All @@ -14,6 +14,7 @@
"codeowners": [
"@thomasgermain"
],
"version": "1.8.1",
"version": "1.9.0",
"homeassistant": "2021.9.1",
"iot_class": "cloud_polling"
}
4 changes: 2 additions & 2 deletions custom_components/multimatic/sensor.py
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
DEVICE_CLASS_PRESSURE,
DEVICE_CLASS_TEMPERATURE,
DOMAIN,
STATE_CLASS_MEASUREMENT,
STATE_CLASS_TOTAL_INCREASING,
SensorEntity,
)
from homeassistant.const import ENERGY_WATT_HOUR, TEMP_CELSIUS
Expand Down Expand Up @@ -215,4 +215,4 @@ def last_reset(self) -> datetime.datetime:
@property
def state_class(self) -> str:
"""Return the state class of this entity."""
return STATE_CLASS_MEASUREMENT
return STATE_CLASS_TOTAL_INCREASING

0 comments on commit cdab4e8

Please sign in to comment.