From 88984365fef1bed688f0555341c37d97f1bc5efb Mon Sep 17 00:00:00 2001 From: Kevin Fronczak Date: Tue, 6 Oct 2020 09:31:45 -0400 Subject: [PATCH] Update constants.py --- blinkpy/helpers/constants.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/blinkpy/helpers/constants.py b/blinkpy/helpers/constants.py index 596fd0cb..4f24adca 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 = "4-rc0" __version__ = f"{MAJOR_VERSION}.{MINOR_VERSION}.{PATCH_VERSION}"