Skip to content

Commit

Permalink
Fix of wrong min required version
Browse files Browse the repository at this point in the history
  • Loading branch information
FL550 committed Oct 31, 2024
1 parent 21b6790 commit 1422477
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 5 deletions.
5 changes: 3 additions & 2 deletions custom_components/dwd_weather/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,9 @@
import logging

from homeassistant.config_entries import ConfigEntry
from homeassistant.core import HomeAssistant
from homeassistant.core_config import Config
from homeassistant.core import HomeAssistant, Config

# from homeassistant.core_config import Config
from homeassistant.exceptions import ConfigEntryNotReady
from homeassistant.helpers.update_coordinator import DataUpdateCoordinator
from homeassistant.helpers.entity_registry import async_migrate_entries
Expand Down
4 changes: 2 additions & 2 deletions custom_components/dwd_weather/const.py
Original file line number Diff line number Diff line change
Expand Up @@ -14,8 +14,8 @@
Platform.SENSOR,
Platform.WEATHER,
]
INTEGRATION_VERSION = "2.1.20"
MIN_REQUIRED_HA_VERSION = "2024.11"
INTEGRATION_VERSION = "2.1.21"
MIN_REQUIRED_HA_VERSION = "2024.6.1"

ATTR_LATEST_UPDATE = "latest_update_utc"
ATTR_REPORT_ISSUE_TIME = "report_time_utc"
Expand Down
2 changes: 1 addition & 1 deletion custom_components/dwd_weather/manifest.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"domain": "dwd_weather",
"version": "2.1.20",
"version": "2.1.21",
"name": "Deutscher Wetterdienst (DWD)",
"documentation": "https://github.com/FL550/dwd_weather",
"issue_tracker": "https://github.com/FL550/dwd_weather/issues",
Expand Down

0 comments on commit 1422477

Please sign in to comment.