From 17d1aa96902da5698b8f896e415a2af14347cbb3 Mon Sep 17 00:00:00 2001 From: Kevin Fronczak Date: Sat, 12 Oct 2019 14:31:20 -0400 Subject: [PATCH 1/3] Update changelog, bumped version --- CHANGES.rst | 5 +++++ blinkpy/helpers/constants.py | 4 ++-- 2 files changed, 7 insertions(+), 2 deletions(-) diff --git a/CHANGES.rst b/CHANGES.rst index 8b45c14..2b83bd5 100644 --- a/CHANGES.rst +++ b/CHANGES.rst @@ -3,6 +3,11 @@ Changelog A list of changes between each release +0.14.2 (2019-10-12) +^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ +- Update dependencies +- Dockerize `(@3ch01c __)` + 0.14.1 (2019-06-20) ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - Fix timeout problems blocking blinkpy startup diff --git a/blinkpy/helpers/constants.py b/blinkpy/helpers/constants.py index 7ad02a9..bea88e1 100644 --- a/blinkpy/helpers/constants.py +++ b/blinkpy/helpers/constants.py @@ -3,8 +3,8 @@ import os MAJOR_VERSION = 0 -MINOR_VERSION = 15 -PATCH_VERSION = '0.dev0' +MINOR_VERSION = 14 +PATCH_VERSION = 2 2 __version__ = '{}.{}.{}'.format(MAJOR_VERSION, MINOR_VERSION, PATCH_VERSION) From ad7ece4d45759e00089461a754e3da31de234107 Mon Sep 17 00:00:00 2001 From: Kevin Fronczak Date: Sat, 12 Oct 2019 14:32:26 -0400 Subject: [PATCH 2/3] Fixed version.wq --- blinkpy/helpers/constants.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/blinkpy/helpers/constants.py b/blinkpy/helpers/constants.py index bea88e1..574f099 100644 --- a/blinkpy/helpers/constants.py +++ b/blinkpy/helpers/constants.py @@ -4,7 +4,7 @@ import os MAJOR_VERSION = 0 MINOR_VERSION = 14 -PATCH_VERSION = 2 2 +PATCH_VERSION = 2 __version__ = '{}.{}.{}'.format(MAJOR_VERSION, MINOR_VERSION, PATCH_VERSION) From fa50e315a96d8650e1cc4c3a37aa93272f171421 Mon Sep 17 00:00:00 2001 From: Kevin Fronczak Date: Sat, 12 Oct 2019 14:42:34 -0400 Subject: [PATCH 3/3] dev version bump --- blinkpy/helpers/constants.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/blinkpy/helpers/constants.py b/blinkpy/helpers/constants.py index 574f099..7ad02a9 100644 --- a/blinkpy/helpers/constants.py +++ b/blinkpy/helpers/constants.py @@ -3,8 +3,8 @@ import os MAJOR_VERSION = 0 -MINOR_VERSION = 14 -PATCH_VERSION = 2 +MINOR_VERSION = 15 +PATCH_VERSION = '0.dev0' __version__ = '{}.{}.{}'.format(MAJOR_VERSION, MINOR_VERSION, PATCH_VERSION)