From 3ddfd106781bcd7efb805d9c8e6a38013a0832b8 Mon Sep 17 00:00:00 2001 From: Kevin Fronczak Date: Thu, 18 Feb 2021 09:42:45 -0500 Subject: [PATCH] Version bump --- CHANGES.rst | 7 +++++++ blinkpy/helpers/constants.py | 4 ++-- 2 files changed, 9 insertions(+), 2 deletions(-) diff --git a/CHANGES.rst b/CHANGES.rst index a9924a3..3775692 100644 --- a/CHANGES.rst +++ b/CHANGES.rst @@ -4,6 +4,13 @@ Changelog A list of changes between each release +0.17.1 (2021-02-18) +~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + +- Add delay parameter to Blink.download_videos method in order to throttle API during video retrieval (`#437 `__) +- Bump pylint to 2.6.2 + + 0.17.0 (2021-02-15) ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ diff --git a/blinkpy/helpers/constants.py b/blinkpy/helpers/constants.py index 4cc5b7b..167aec6 100644 --- a/blinkpy/helpers/constants.py +++ b/blinkpy/helpers/constants.py @@ -3,8 +3,8 @@ import os MAJOR_VERSION = 0 -MINOR_VERSION = 18 -PATCH_VERSION = "0.dev0" +MINOR_VERSION = 17 +PATCH_VERSION = 1 __version__ = f"{MAJOR_VERSION}.{MINOR_VERSION}.{PATCH_VERSION}"