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}"