diff --git a/custom_components/bluecon/__init__.py b/custom_components/bluecon/__init__.py index 81784ee..77e59f3 100644 --- a/custom_components/bluecon/__init__.py +++ b/custom_components/bluecon/__init__.py @@ -42,7 +42,7 @@ async def async_unload_entry(hass: HomeAssistant, entry: ConfigEntry) -> bool: return unload_ok -async def async_migrate_entity(hass: HomeAssistant, config_entry: ConfigEntry): +async def async_migrate_entry(hass: HomeAssistant, config_entry: ConfigEntry): if config_entry.version == 1: try: with open("credentials.json", "r") as f: diff --git a/custom_components/bluecon/manifest.json b/custom_components/bluecon/manifest.json index a7a4842..c764e6a 100644 --- a/custom_components/bluecon/manifest.json +++ b/custom_components/bluecon/manifest.json @@ -1,7 +1,7 @@ { "domain": "bluecon", "name": "Fermax Blue", - "version": "0.1.2", + "version": "0.1.3", "documentation": "https://hass-bluecon.afonsogarcia.dev/", "issue_tracker": "https://github.com/AfonsoFGarcia/hass-bluecon/issues", "requirements": ["bluecon==0.1.0", "aiohttp", "oscrypto", "protobuf", "http-ece"],