From 9e86f0498bfb37a0f9a6ceb24c5b137dfd0f28da Mon Sep 17 00:00:00 2001 From: tadly Date: Sun, 16 Sep 2018 22:53:25 +0200 Subject: [PATCH 1/4] Upgrade zeroconf to 0.21.0 (#16647) --- homeassistant/components/zeroconf.py | 2 +- requirements_all.txt | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/homeassistant/components/zeroconf.py b/homeassistant/components/zeroconf.py index 675c3a65e5f..1f20ebad086 100644 --- a/homeassistant/components/zeroconf.py +++ b/homeassistant/components/zeroconf.py @@ -12,7 +12,7 @@ import voluptuous as vol from homeassistant import util from homeassistant.const import (EVENT_HOMEASSISTANT_STOP, __version__) -REQUIREMENTS = ['zeroconf==0.20.0'] +REQUIREMENTS = ['zeroconf==0.21.0'] _LOGGER = logging.getLogger(__name__) diff --git a/requirements_all.txt b/requirements_all.txt index 1297d421b67..29036cc3dbd 100644 --- a/requirements_all.txt +++ b/requirements_all.txt @@ -1523,7 +1523,7 @@ youtube_dl==2018.09.10 zengge==0.2 # homeassistant.components.zeroconf -zeroconf==0.20.0 +zeroconf==0.21.0 # homeassistant.components.climate.zhong_hong zhong_hong_hvac==1.0.9 From 9dbac9b03341a21aa613e43c107153513d956380 Mon Sep 17 00:00:00 2001 From: Fabian Affolter Date: Tue, 18 Sep 2018 15:49:54 +0200 Subject: [PATCH 2/4] Upgrade zeroconf to 0.21.1 (#16687) --- homeassistant/components/zeroconf.py | 2 +- requirements_all.txt | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/homeassistant/components/zeroconf.py b/homeassistant/components/zeroconf.py index 1f20ebad086..d63b532ccbb 100644 --- a/homeassistant/components/zeroconf.py +++ b/homeassistant/components/zeroconf.py @@ -12,7 +12,7 @@ import voluptuous as vol from homeassistant import util from homeassistant.const import (EVENT_HOMEASSISTANT_STOP, __version__) -REQUIREMENTS = ['zeroconf==0.21.0'] +REQUIREMENTS = ['zeroconf==0.21.1'] _LOGGER = logging.getLogger(__name__) diff --git a/requirements_all.txt b/requirements_all.txt index 29036cc3dbd..b5a4b5e61c7 100644 --- a/requirements_all.txt +++ b/requirements_all.txt @@ -1523,7 +1523,7 @@ youtube_dl==2018.09.10 zengge==0.2 # homeassistant.components.zeroconf -zeroconf==0.21.0 +zeroconf==0.21.1 # homeassistant.components.climate.zhong_hong zhong_hong_hvac==1.0.9 From 03d93bea34093a2e9a02fec19f35d6889bebdfcf Mon Sep 17 00:00:00 2001 From: Fabian Affolter Date: Thu, 20 Sep 2018 09:38:35 +0200 Subject: [PATCH 3/4] Upgrade zeroconf to 0.21.2 (#16730) --- homeassistant/components/zeroconf.py | 2 +- requirements_all.txt | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/homeassistant/components/zeroconf.py b/homeassistant/components/zeroconf.py index d63b532ccbb..f3917078f34 100644 --- a/homeassistant/components/zeroconf.py +++ b/homeassistant/components/zeroconf.py @@ -12,7 +12,7 @@ import voluptuous as vol from homeassistant import util from homeassistant.const import (EVENT_HOMEASSISTANT_STOP, __version__) -REQUIREMENTS = ['zeroconf==0.21.1'] +REQUIREMENTS = ['zeroconf==0.21.2'] _LOGGER = logging.getLogger(__name__) diff --git a/requirements_all.txt b/requirements_all.txt index b5a4b5e61c7..4102c58022c 100644 --- a/requirements_all.txt +++ b/requirements_all.txt @@ -1523,7 +1523,7 @@ youtube_dl==2018.09.10 zengge==0.2 # homeassistant.components.zeroconf -zeroconf==0.21.1 +zeroconf==0.21.2 # homeassistant.components.climate.zhong_hong zhong_hong_hvac==1.0.9 From 44a98fb77ac440955aba217a7525f9cd7c3a8f3d Mon Sep 17 00:00:00 2001 From: Paulus Schoutsen Date: Thu, 20 Sep 2018 20:26:25 +0200 Subject: [PATCH 4/4] Bumped version to 0.78.2 --- homeassistant/const.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/homeassistant/const.py b/homeassistant/const.py index 4719e934109..2907aed5bd5 100644 --- a/homeassistant/const.py +++ b/homeassistant/const.py @@ -2,7 +2,7 @@ """Constants used by Home Assistant components.""" MAJOR_VERSION = 0 MINOR_VERSION = 78 -PATCH_VERSION = '1' +PATCH_VERSION = '2' __short_version__ = '{}.{}'.format(MAJOR_VERSION, MINOR_VERSION) __version__ = '{}.{}'.format(__short_version__, PATCH_VERSION) REQUIRED_PYTHON_VER = (3, 5, 3)