From e2cf64cb850c3cee0e59ff5bde9ba95c584969ed Mon Sep 17 00:00:00 2001 From: MisterWil Date: Tue, 29 Dec 2020 07:39:03 -0800 Subject: [PATCH] Fix req version for issue #16. v0.6.2 --- requirements.txt | 2 +- skybellpy/helpers/constants.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/requirements.txt b/requirements.txt index 2f430b5..ee5d71c 100644 --- a/requirements.txt +++ b/requirements.txt @@ -1,2 +1,2 @@ requests>=2.12.4 -colorlog==3.0.1 \ No newline at end of file +colorlog>=3.0.1 diff --git a/skybellpy/helpers/constants.py b/skybellpy/helpers/constants.py index 7f3a477..153e39b 100644 --- a/skybellpy/helpers/constants.py +++ b/skybellpy/helpers/constants.py @@ -3,7 +3,7 @@ MAJOR_VERSION = 0 MINOR_VERSION = 6 -PATCH_VERSION = '1' +PATCH_VERSION = '2' __version__ = '{}.{}.{}'.format(MAJOR_VERSION, MINOR_VERSION, PATCH_VERSION)