From dd6ab79e35ea43ccd6edc812ea9647336636792d Mon Sep 17 00:00:00 2001 From: Paulus Schoutsen Date: Tue, 10 May 2016 21:41:53 -0700 Subject: [PATCH 1/2] Make AND and OR conditions valid --- homeassistant/helpers/config_validation.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/homeassistant/helpers/config_validation.py b/homeassistant/helpers/config_validation.py index cea7e95ac5a..031ab5227dc 100644 --- a/homeassistant/helpers/config_validation.py +++ b/homeassistant/helpers/config_validation.py @@ -369,6 +369,8 @@ CONDITION_SCHEMA = vol.Any( TEMPLATE_CONDITION_SCHEMA, TIME_CONDITION_SCHEMA, ZONE_CONDITION_SCHEMA, + AND_CONDITION_SCHEMA, + OR_CONDITION_SCHEMA, ) _SCRIPT_DELAY_SCHEMA = vol.Schema({ From 786a0154b198157ef6705a57bb7f56f712c137ee Mon Sep 17 00:00:00 2001 From: Paulus Schoutsen Date: Tue, 10 May 2016 21:48:05 -0700 Subject: [PATCH 2/2] Version bump to 0.19.4 --- homeassistant/const.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/homeassistant/const.py b/homeassistant/const.py index 1808ffbada1..e69b44786a9 100644 --- a/homeassistant/const.py +++ b/homeassistant/const.py @@ -1,7 +1,7 @@ # coding: utf-8 """Constants used by Home Assistant components.""" -__version__ = "0.19.3" +__version__ = "0.19.4" REQUIRED_PYTHON_VER = (3, 4) PLATFORM_FORMAT = '{}.{}'