From 6dbed9142656d8ed4f1e56d4f6252fee230e4b4d Mon Sep 17 00:00:00 2001 From: Kevin Fronczak Date: Sun, 2 Aug 2020 03:24:38 +0000 Subject: [PATCH] Update changelog for 0.16.3 --- CHANGES.rst | 5 +++++ blinkpy/helpers/constants.py | 4 ++-- 2 files changed, 7 insertions(+), 2 deletions(-) diff --git a/CHANGES.rst b/CHANGES.rst index 224ff61..9646499 100644 --- a/CHANGES.rst +++ b/CHANGES.rst @@ -4,6 +4,11 @@ Changelog A list of changes between each release +0.16.3 (2020-08-02) +~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + +- Add user-agent to all headers + 0.16.2 (2020-08-01) ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ diff --git a/blinkpy/helpers/constants.py b/blinkpy/helpers/constants.py index 596fd0c..bf43b5c 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.dev0" +MINOR_VERSION = 16 +PATCH_VERSION = 3 __version__ = f"{MAJOR_VERSION}.{MINOR_VERSION}.{PATCH_VERSION}"