Version bump
This commit is contained in:
+3
-1
@@ -3,7 +3,7 @@ Changelog
|
|||||||
|
|
||||||
A list of changes between each release
|
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
|
- Moved all API calls to own module for easier maintainability
|
||||||
- Added network ids to sync module and cameras to allow for multi-network use
|
- 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
|
- 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)
|
- 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
|
- Added serial number attributes to sync module and cameras
|
||||||
|
- Check network_id from login response and verify that network is onboarded (fixes `#90 <https://github.com/fronzbot/#90>`_)
|
||||||
|
- Check if retrieved clip is "None" prior to storing in cache
|
||||||
|
|
||||||
0.9.0 (2018-09-27)
|
0.9.0 (2018-09-27)
|
||||||
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
||||||
|
|||||||
@@ -4,11 +4,11 @@ import os
|
|||||||
|
|
||||||
MAJOR_VERSION = 0
|
MAJOR_VERSION = 0
|
||||||
MINOR_VERSION = 10
|
MINOR_VERSION = 10
|
||||||
PATCH_VERSION = '0.dev'
|
PATCH_VERSION = 0
|
||||||
|
|
||||||
__version__ = '{}.{}.{}'.format(MAJOR_VERSION, MINOR_VERSION, PATCH_VERSION)
|
__version__ = '{}.{}.{}'.format(MAJOR_VERSION, MINOR_VERSION, PATCH_VERSION)
|
||||||
|
|
||||||
REQUIRED_PYTHON_VER = (3, 4, 2)
|
REQUIRED_PYTHON_VER = (3, 5, 3)
|
||||||
|
|
||||||
PROJECT_NAME = 'blinkpy'
|
PROJECT_NAME = 'blinkpy'
|
||||||
PROJECT_PACKAGE_NAME = 'blinkpy'
|
PROJECT_PACKAGE_NAME = 'blinkpy'
|
||||||
@@ -30,7 +30,9 @@ PROJECT_CLASSIFIERS = [
|
|||||||
'Intended Audience :: Developers',
|
'Intended Audience :: Developers',
|
||||||
'License :: OSI Approved :: MIT License',
|
'License :: OSI Approved :: MIT License',
|
||||||
'Operating System :: OS Independent',
|
'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'
|
'Topic :: Home Automation'
|
||||||
]
|
]
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user