From 021946e1817e608ab269e812b36503209c898ab3 Mon Sep 17 00:00:00 2001 From: Pascal Vizeli Date: Tue, 15 Aug 2017 00:35:58 +0200 Subject: [PATCH 1/3] Pump version to 0.54 --- hassio/const.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/hassio/const.py b/hassio/const.py index a6c5a3dca..656d422f4 100644 --- a/hassio/const.py +++ b/hassio/const.py @@ -1,7 +1,7 @@ """Const file for HassIO.""" from pathlib import Path -HASSIO_VERSION = '0.53' +HASSIO_VERSION = '0.54' URL_HASSIO_VERSION = ('https://raw.githubusercontent.com/home-assistant/' 'hassio/{}/version.json') From f00b21dc287ff08a15bc682540df9a1e1261c9f3 Mon Sep 17 00:00:00 2001 From: Pascal Vizeli Date: Tue, 15 Aug 2017 08:55:55 +0200 Subject: [PATCH 2/3] Bugfix git clone (#152) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Add an optional extended description… --- hassio/addons/git.py | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/hassio/addons/git.py b/hassio/addons/git.py index 70c9fda49..233b5e965 100644 --- a/hassio/addons/git.py +++ b/hassio/addons/git.py @@ -1,6 +1,7 @@ """Init file for HassIO addons git.""" import asyncio import logging +import functools as ft from pathlib import Path import shutil @@ -48,8 +49,9 @@ class GitRepo(object): try: _LOGGER.info("Clone addon %s repository", self.url) self.repo = await self.loop.run_in_executor( - None, git.Repo.clone_from, self.url, str(self.path), - recursive=True) + None, ft.partial( + git.Repo.clone_from, self.url, str(self.path), + recursive=True)) except (git.InvalidGitRepositoryError, git.NoSuchPathError, git.GitCommandError) as err: From a34806d4e2b52f5c03efbcfba9bae7239dbd2729 Mon Sep 17 00:00:00 2001 From: Pascal Vizeli Date: Tue, 15 Aug 2017 08:56:40 +0200 Subject: [PATCH 3/3] Update hass.io to 0.54 --- version.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/version.json b/version.json index 8cec6cfd3..cf40cc164 100644 --- a/version.json +++ b/version.json @@ -1,5 +1,5 @@ { - "hassio": "0.53", + "hassio": "0.54", "homeassistant": "0.51.2", "resinos": "1.0", "resinhup": "0.3",