diff --git a/custom_components/gardena_smart_system/__init__.py b/custom_components/gardena_smart_system/__init__.py index 6b861cc..cb9c0be 100644 --- a/custom_components/gardena_smart_system/__init__.py +++ b/custom_components/gardena_smart_system/__init__.py @@ -63,7 +63,7 @@ async def async_setup_entry(hass: HomeAssistant, entry: ConfigEntry) -> bool: for component in PLATFORMS: hass.async_create_task( - hass.config_entries.async_forward_entry_setup(entry, component)) + await hass.config_entries.async_forward_entry_set(entry, component)) _LOGGER.debug("Gardena Smart System component setup finished") return True diff --git a/custom_components/gardena_smart_system/manifest.json b/custom_components/gardena_smart_system/manifest.json index 4d8d16d..d7f9b9a 100644 --- a/custom_components/gardena_smart_system/manifest.json +++ b/custom_components/gardena_smart_system/manifest.json @@ -1,7 +1,7 @@ { "domain": "gardena_smart_system", "name": "Gardena Smart System integration", - "version": "1.0.0", + "version": "1.1.0", "config_flow": true, "documentation": "https://github.com/py-smart-gardena/hass-gardena-smart-system", "issue_tracker": "https://github.com/py-smart-gardena/hass-gardena-smart-system/issues",