Skip to content

Commit

Permalink
Bump hahomematic to 2025.2.1 (#816)
Browse files Browse the repository at this point in the history
  • Loading branch information
SukramJ authored Feb 2, 2025
1 parent 43252bc commit 778b231
Show file tree
Hide file tree
Showing 7 changed files with 44 additions and 35 deletions.
52 changes: 26 additions & 26 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -813,44 +813,44 @@ data:
weekday: MONDAY
weekday_data:
"1":
ScheduleSlotType.ENDTIME: "05:00"
ScheduleSlotType.TEMPERATURE: 16
ENDTIME: "05:00"
TEMPERATURE: 16
"2":
ScheduleSlotType.ENDTIME: "06:00"
ScheduleSlotType.TEMPERATURE: 17
ENDTIME: "06:00"
TEMPERATURE: 17
"3":
ScheduleSlotType.ENDTIME: "09:00"
ScheduleSlotType.TEMPERATURE: 16
ENDTIME: "09:00"
TEMPERATURE: 16
"4":
ScheduleSlotType.ENDTIME: "15:00"
ScheduleSlotType.TEMPERATURE: 17
ENDTIME: "15:00"
TEMPERATURE: 17
"5":
ScheduleSlotType.ENDTIME: "19:00"
ScheduleSlotType.TEMPERATURE: 16
ENDTIME: "19:00"
TEMPERATURE: 16
"6":
ScheduleSlotType.ENDTIME: "22:00"
ScheduleSlotType.TEMPERATURE: 22
ENDTIME: "22:00"
TEMPERATURE: 22
"7":
ScheduleSlotType.ENDTIME: "24:00"
ScheduleSlotType.TEMPERATURE: 16
ENDTIME: "24:00"
TEMPERATURE: 16
"8":
ScheduleSlotType.ENDTIME: "24:00"
ScheduleSlotType.TEMPERATURE: 16
ENDTIME: "24:00"
TEMPERATURE: 16
"9":
ScheduleSlotType.ENDTIME: "24:00"
ScheduleSlotType.TEMPERATURE: 16
ENDTIME: "24:00"
TEMPERATURE: 16
"10":
ScheduleSlotType.ENDTIME: "24:00"
ScheduleSlotType.TEMPERATURE: 16
ENDTIME: "24:00"
TEMPERATURE: 16
"11":
ScheduleSlotType.ENDTIME: "24:00"
ScheduleSlotType.TEMPERATURE: 16
ENDTIME: "24:00"
TEMPERATURE: 16
"12":
ScheduleSlotType.ENDTIME: "24:00"
ScheduleSlotType.TEMPERATURE: 16
ENDTIME: "24:00"
TEMPERATURE: 16
"13":
ScheduleSlotType.ENDTIME: "24:00"
ScheduleSlotType.TEMPERATURE: 16
ENDTIME: "24:00"
TEMPERATURE: 16
```

### Sample for set_schedule_simple_profile
Expand Down
9 changes: 9 additions & 0 deletions changelog.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,12 @@
# Version 1.81.0 (2025-02-02)

## What's Changed
- Bump hahomematic to 2025.2.1
- Add calculated data points for HM devices
- Remove python 3.12 for github tests and pylint
- Use py 3.13 for mypy and pylint
- Fix import from HA

# Version 1.80.0 (2025-01-30)

## What's Changed
Expand Down
2 changes: 1 addition & 1 deletion custom_components/homematicip_local/config_flow.py
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,6 @@
import voluptuous as vol
from voluptuous.schema_builder import UNDEFINED, Schema

from homeassistant.components import ssdp
from homeassistant.config_entries import CONN_CLASS_LOCAL_PUSH, ConfigEntry, ConfigFlow, ConfigFlowResult, OptionsFlow
from homeassistant.const import CONF_HOST, CONF_NAME, CONF_PASSWORD, CONF_PATH, CONF_PORT, CONF_USERNAME
from homeassistant.core import HomeAssistant, callback
Expand All @@ -39,6 +38,7 @@
TextSelectorConfig,
TextSelectorType,
)
from homeassistant.helpers.service_info import ssdp
from homeassistant.helpers.typing import ConfigType

from .const import (
Expand Down
4 changes: 2 additions & 2 deletions custom_components/homematicip_local/const.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,10 +10,10 @@
from homeassistant.const import Platform

DOMAIN: Final = "homematicip_local"
HMIP_LOCAL_MIN_HA_VERSION: Final = "2024.12.0"
HMIP_LOCAL_MIN_HA_VERSION: Final = "2025.2.0b0"
ENABLE_EXPERIMENTAL_FEATURES: Final = False

HMIP_LOCAL_HAHOMEMATIC_VERSION: Final = "2025.2.0"
HMIP_LOCAL_HAHOMEMATIC_VERSION: Final = "2025.2.1"

DEFAULT_ENABLE_DEVICE_FIRMWARE_CHECK: Final = True
DEFAULT_ENABLE_SYSTEM_NOTIFICATIONS: Final = True
Expand Down
4 changes: 2 additions & 2 deletions custom_components/homematicip_local/manifest.json
Original file line number Diff line number Diff line change
Expand Up @@ -10,13 +10,13 @@
"iot_class": "local_push",
"issue_tracker": "https://github.com/sukramj/hahomematic/issues",
"loggers": ["hahomematic"],
"requirements": ["hahomematic==2025.2.0"],
"requirements": ["hahomematic==2025.2.1"],
"ssdp": [
{
"manufacturer": "EQ3",
"manufacturerURL": "http://www.homematic.com"
}
],
"version": "1.80.0",
"version": "1.81.0",
"zeroconf": []
}
2 changes: 1 addition & 1 deletion hacs.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "Homematic(IP) Local",
"hide_default_branch": false,
"homeassistant": "2024.12.0",
"homeassistant": "2025.2.0b0",
"hacs": "2.0.1"
}
6 changes: 3 additions & 3 deletions requirements_test.txt
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
-r requirements_test_pre_commit.txt

async-upnp-client==0.43.0
hahomematic==2025.2.0
homeassistant==2025.2.0b4
hahomematic==2025.2.1
homeassistant==2025.2.0b6
isal==1.7.1
mypy-dev==1.14.0a7
pre-commit==4.1.0
pur==7.3.3
pydevccu==0.1.9
pylint==3.3.4
pylint_strict_informational==0.1
pytest-homeassistant-custom-component==0.13.206
pytest-homeassistant-custom-component==0.13.207

0 comments on commit 778b231

Please sign in to comment.