diff --git a/hass_nabucasa/remote.py b/hass_nabucasa/remote.py index cad00d7f8..a43457b29 100644 --- a/hass_nabucasa/remote.py +++ b/hass_nabucasa/remote.py @@ -295,6 +295,7 @@ async def _reconnect_snitun(self) -> None: except asyncio.CancelledError: pass finally: + _LOGGER.debug("Close remote UI reconnect guard") self._reconnect_task = None async def _certificate_handler(self) -> None: diff --git a/setup.py b/setup.py index 82ea8f825..f16c954b6 100644 --- a/setup.py +++ b/setup.py @@ -1,6 +1,6 @@ from setuptools import setup -VERSION = "0.8" +VERSION = "0.9" setup( name="hass-nabucasa", @@ -30,7 +30,7 @@ packages=["hass_nabucasa"], install_requires=[ "warrant==0.6.1", - "snitun==0.15", + "snitun==0.17", "acme==0.32.0", "cryptography>=2.5", "attrs>=18.2.0",