diff --git a/CHANGES.rst b/CHANGES.rst index f0bbd3c..4a451cd 100644 --- a/CHANGES.rst +++ b/CHANGES.rst @@ -3,7 +3,7 @@ Changelog A list of changes between each release -0.10.0.dev (Development Version) +0.10.0 (2018-10-16) ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - Moved all API calls to own module for easier maintainability - Added network ids to sync module and cameras to allow for multi-network use @@ -12,6 +12,8 @@ A list of changes between each release - Use homescreen thumbnail as fallback in case it's not in the camera endpoint - Removed "armed" and "status" attributes from camera (status of camera only reported by "motion_enabled" now) - Added serial number attributes to sync module and cameras +- Check network_id from login response and verify that network is onboarded (fixes `#90 `_) +- Check if retrieved clip is "None" prior to storing in cache 0.9.0 (2018-09-27) ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ diff --git a/blinkpy/helpers/constants.py b/blinkpy/helpers/constants.py index c838957..642168e 100644 --- a/blinkpy/helpers/constants.py +++ b/blinkpy/helpers/constants.py @@ -4,11 +4,11 @@ import os MAJOR_VERSION = 0 MINOR_VERSION = 10 -PATCH_VERSION = '0.dev' +PATCH_VERSION = 0 __version__ = '{}.{}.{}'.format(MAJOR_VERSION, MINOR_VERSION, PATCH_VERSION) -REQUIRED_PYTHON_VER = (3, 4, 2) +REQUIRED_PYTHON_VER = (3, 5, 3) PROJECT_NAME = 'blinkpy' PROJECT_PACKAGE_NAME = 'blinkpy' @@ -30,7 +30,9 @@ PROJECT_CLASSIFIERS = [ 'Intended Audience :: Developers', 'License :: OSI Approved :: MIT License', 'Operating System :: OS Independent', - 'Programming Language :: Python :: 3.4', + 'Programming Language :: Python :: 3.5', + 'Programming Language :: Python :: 3.6', + 'Programming Language :: Python :: 3.7', 'Topic :: Home Automation' ]