From 8c44ecc4ba9e7bd57e74951249ce8a9023bbbb04 Mon Sep 17 00:00:00 2001 From: Fabian Affolter Date: Sun, 17 Jul 2016 00:20:41 +0200 Subject: [PATCH 1/4] Update version --- homeassistant/const.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/homeassistant/const.py b/homeassistant/const.py index 50718be7804..e52570fb460 100644 --- a/homeassistant/const.py +++ b/homeassistant/const.py @@ -1,7 +1,7 @@ # coding: utf-8 """Constants used by Home Assistant components.""" -__version__ = "0.24.0.dev0" +__version__ = "0.24" REQUIRED_PYTHON_VER = (3, 4) PLATFORM_FORMAT = '{}.{}' From 89639822f17dc0c7a362ab420344da0d23ed24c9 Mon Sep 17 00:00:00 2001 From: Fabian Affolter Date: Sun, 17 Jul 2016 00:25:49 +0200 Subject: [PATCH 2/4] Fix version --- homeassistant/const.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/homeassistant/const.py b/homeassistant/const.py index e52570fb460..8318020a43a 100644 --- a/homeassistant/const.py +++ b/homeassistant/const.py @@ -1,7 +1,7 @@ # coding: utf-8 """Constants used by Home Assistant components.""" -__version__ = "0.24" +__version__ = "0.24.0" REQUIRED_PYTHON_VER = (3, 4) PLATFORM_FORMAT = '{}.{}' From 7a1e2de49f7b59c7445659fc898e7c534d46b7ad Mon Sep 17 00:00:00 2001 From: Nathan Henrie Date: Tue, 19 Jul 2016 22:51:38 -0600 Subject: [PATCH 3/4] Don't overwrite the config directory (#2570) Closes #2566 The `else` seems to have been an error and was overwriting a non-default config directory with the default location. --- homeassistant/scripts/db_migrator.py | 2 -- 1 file changed, 2 deletions(-) diff --git a/homeassistant/scripts/db_migrator.py b/homeassistant/scripts/db_migrator.py index dfe31be7684..3ce26014c05 100644 --- a/homeassistant/scripts/db_migrator.py +++ b/homeassistant/scripts/db_migrator.py @@ -83,8 +83,6 @@ def run(args): print(('Fatal Error: Specified configuration directory does ' 'not exist {} ').format(config_dir)) return 1 - else: - config_dir = config_util.get_default_config_dir() src_db = '{}/home-assistant.db'.format(config_dir) dst_db = '{}/home-assistant_v2.db'.format(config_dir) From 19cb1a954f22e7624af69169babeb062ce389ae2 Mon Sep 17 00:00:00 2001 From: Paulus Schoutsen Date: Wed, 20 Jul 2016 22:42:46 -0700 Subject: [PATCH 4/4] Version bump to 0.24.1 --- .../components/frontend/www_static/home-assistant-polymer | 2 +- homeassistant/const.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/homeassistant/components/frontend/www_static/home-assistant-polymer b/homeassistant/components/frontend/www_static/home-assistant-polymer index 5e7f2fdbe84..718384f22aa 160000 --- a/homeassistant/components/frontend/www_static/home-assistant-polymer +++ b/homeassistant/components/frontend/www_static/home-assistant-polymer @@ -1 +1 @@ -Subproject commit 5e7f2fdbe849c43ba1c7dd647e5f948894c3118e +Subproject commit 718384f22aa0a689190a4d3f41b5e9ed091c80a3 diff --git a/homeassistant/const.py b/homeassistant/const.py index 8318020a43a..ff41ce60da5 100644 --- a/homeassistant/const.py +++ b/homeassistant/const.py @@ -1,7 +1,7 @@ # coding: utf-8 """Constants used by Home Assistant components.""" -__version__ = "0.24.0" +__version__ = "0.24.1" REQUIRED_PYTHON_VER = (3, 4) PLATFORM_FORMAT = '{}.{}'