From 2022b80f9d167ab76de173baf6520f92e4b84426 Mon Sep 17 00:00:00 2001 From: Kevin Fronczak Date: Tue, 30 Oct 2018 20:16:37 -0400 Subject: [PATCH] Version bump --- CHANGES.rst | 6 ++++++ blinkpy/helpers/constants.py | 4 ++-- 2 files changed, 8 insertions(+), 2 deletions(-) diff --git a/CHANGES.rst b/CHANGES.rst index b416b5a..d5234d7 100644 --- a/CHANGES.rst +++ b/CHANGES.rst @@ -3,6 +3,12 @@ Changelog A list of changes between each release +0.10.2 (2018-10-30) +^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ +- Set minimum required version of the requests library to 2.20.0 due to vulnerability in earlier releases. +- When multiple networks detected, changed log level to 'warning' from 'error' + + 0.10.1 (2018-10-18) ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - Fix re-authorization bug (fixes `#101 `_) diff --git a/blinkpy/helpers/constants.py b/blinkpy/helpers/constants.py index c0e1538..db5d007 100644 --- a/blinkpy/helpers/constants.py +++ b/blinkpy/helpers/constants.py @@ -3,8 +3,8 @@ import os MAJOR_VERSION = 0 -MINOR_VERSION = 11 -PATCH_VERSION = '0.dev' +MINOR_VERSION = 10 +PATCH_VERSION = 2 __version__ = '{}.{}.{}'.format(MAJOR_VERSION, MINOR_VERSION, PATCH_VERSION)