From 0322414de12b154c7aaac03e20ebf90dbc81b8b6 Mon Sep 17 00:00:00 2001 From: Kevin Fronczak Date: Wed, 29 Jul 2020 15:23:33 +0000 Subject: [PATCH] Updated versions and changelog for 0.16.1 --- CHANGES.rst | 8 ++++++++ blinkpy/helpers/constants.py | 4 ++-- 2 files changed, 10 insertions(+), 2 deletions(-) diff --git a/CHANGES.rst b/CHANGES.rst index 310b2337..1671b96e 100644 --- a/CHANGES.rst +++ b/CHANGES.rst @@ -4,6 +4,14 @@ Changelog A list of changes between each release +0.16.1 (2020-07-29) +~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + +- Unpin requeirements, set minimum version instead +- Bump coverage to 5.2.1 +- Bump pytest to 6.0.0 + + 0.16.0 (2020-07-20) ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ diff --git a/blinkpy/helpers/constants.py b/blinkpy/helpers/constants.py index 8c09b4d8..80fa202a 100644 --- a/blinkpy/helpers/constants.py +++ b/blinkpy/helpers/constants.py @@ -3,8 +3,8 @@ import os MAJOR_VERSION = 0 -MINOR_VERSION = 17 -PATCH_VERSION = "0-rc0" +MINOR_VERSION = 16 +PATCH_VERSION = 1 __version__ = f"{MAJOR_VERSION}.{MINOR_VERSION}.{PATCH_VERSION}"