From 8a8551132fccebbb5a46d144f9c6926f1ccfe324 Mon Sep 17 00:00:00 2001 From: Greg Dowling Date: Sun, 14 Aug 2016 19:42:43 +0100 Subject: [PATCH 1/2] Bump to pywemo 0.4.5 - fixes bug with requests 2.11.0 (#2818) --- homeassistant/components/wemo.py | 2 +- requirements_all.txt | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/homeassistant/components/wemo.py b/homeassistant/components/wemo.py index 1a32d4c361e..00a7017fa0f 100644 --- a/homeassistant/components/wemo.py +++ b/homeassistant/components/wemo.py @@ -10,7 +10,7 @@ from homeassistant.components.discovery import SERVICE_WEMO from homeassistant.helpers import discovery from homeassistant.const import EVENT_HOMEASSISTANT_STOP -REQUIREMENTS = ['pywemo==0.4.3'] +REQUIREMENTS = ['pywemo==0.4.5'] DOMAIN = 'wemo' diff --git a/requirements_all.txt b/requirements_all.txt index e2be50c8f4d..be9977d6b8b 100644 --- a/requirements_all.txt +++ b/requirements_all.txt @@ -374,7 +374,7 @@ pyuserinput==0.1.9 pyvera==0.2.15 # homeassistant.components.wemo -pywemo==0.4.3 +pywemo==0.4.5 # homeassistant.components.thermostat.radiotherm radiotherm==1.2 From c4b714a10d137f35273db930880be288c8449dd0 Mon Sep 17 00:00:00 2001 From: Paulus Schoutsen Date: Sun, 14 Aug 2016 21:22:28 -0700 Subject: [PATCH 2/2] Version bump to 0.26.2 --- homeassistant/const.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/homeassistant/const.py b/homeassistant/const.py index 16930328693..2dfedf9dfe6 100644 --- a/homeassistant/const.py +++ b/homeassistant/const.py @@ -1,7 +1,7 @@ # coding: utf-8 """Constants used by Home Assistant components.""" -__version__ = "0.26.1" +__version__ = "0.26.2" REQUIRED_PYTHON_VER = (3, 4) PLATFORM_FORMAT = '{}.{}'