From 6ca243c05cf0a1db8e56cdbce53d15d679dae8a2 Mon Sep 17 00:00:00 2001 From: Kevin Fronczak Date: Fri, 12 May 2017 16:03:50 -0400 Subject: [PATCH] Version bump --- CHANGES.rst | 4 ++-- helpers/constants.py | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/CHANGES.rst b/CHANGES.rst index 064dd5b..547679d 100644 --- a/CHANGES.rst +++ b/CHANGES.rst @@ -3,12 +3,12 @@ Changelog A list of changes between each release -0.6.0 (unreleased) +0.6.0 (2017-05-12) ^^^^^^^^^^^^^^^^^^ - Removed redundent properties that only called hidden variables - Revised request wrapper function to be more intelligent - Added tests to ensure exceptions are caught and handled (100% coverage!) -- Added auto-reauthorization (token refresh) when a request fails due to an expired token (@TySwift93) +- Added auto-reauthorization (token refresh) when a request fails due to an expired token (`@tySwift93 `_) - Added battery level string to reduce confusion with the way Blink reports battery level as integer from 0 to 3 0.5.2 (2017-03-12) diff --git a/helpers/constants.py b/helpers/constants.py index 543a2d2..3eab148 100644 --- a/helpers/constants.py +++ b/helpers/constants.py @@ -6,7 +6,7 @@ import os MAJOR_VERSION = 0 MINOR_VERSION = 6 -PATCH_VERSION = '0.dev2' +PATCH_VERSION = 0 __version__ = '{}.{}.{}'.format(MAJOR_VERSION, MINOR_VERSION, PATCH_VERSION)