diff --git a/custom_components/dwd_weather/__init__.py b/custom_components/dwd_weather/__init__.py index fa8fb7b..a0086fd 100644 --- a/custom_components/dwd_weather/__init__.py +++ b/custom_components/dwd_weather/__init__.py @@ -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 diff --git a/custom_components/dwd_weather/const.py b/custom_components/dwd_weather/const.py index 2a9879c..9d530bf 100644 --- a/custom_components/dwd_weather/const.py +++ b/custom_components/dwd_weather/const.py @@ -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" diff --git a/custom_components/dwd_weather/manifest.json b/custom_components/dwd_weather/manifest.json index 0d41fff..08f42a7 100644 --- a/custom_components/dwd_weather/manifest.json +++ b/custom_components/dwd_weather/manifest.json @@ -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",