File tree 5 files changed +17
-8
lines changed
5 files changed +17
-8
lines changed Original file line number Diff line number Diff line change @@ -3,6 +3,12 @@ Changelog
3
3
4
4
A list of changes between each release
5
5
6
+ 0.10.2 (2018-10-30)
7
+ ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
8
+ - Set minimum required version of the requests library to 2.20.0 due to vulnerability in earlier releases.
9
+ - When multiple networks detected, changed log level to 'warning' from 'error'
10
+
11
+
6
12
0.10.1 (2018-10-18)
7
13
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
8
14
- Fix re-authorization bug (fixes `#101 <https://github.com/fronzbot/blinkpy/issues/#101 >`_)
Original file line number Diff line number Diff line change 1
- blinkpy |Build Status | |Coverage Status | |Docs | |PyPi Version |
2
- ================================================================
1
+ blinkpy |Build Status | |Coverage Status | |Docs | |PyPi Version | | Python Version |
2
+ ================================================================================
3
3
A Python library for the Blink Camera system
4
4
Only compatible with Python 3+
5
5
@@ -90,3 +90,5 @@ The ``blinkpy`` api also allows for saving images and videos to a file and snapp
90
90
:target: https://pypi.python.org/pypi/blinkpy
91
91
.. |Docs | image :: https://readthedocs.org/projects/blinkpy/badge/?version=latest
92
92
:target: http://blinkpy.readthedocs.io/en/latest/?badge=latest
93
+ .. |Python Version | image :: https://img.shields.io/pypi/pyversions/blinkpy.svg
94
+ :target: https://img.shields.io/pypi/pyversions/blinkpy.svg
Original file line number Diff line number Diff line change @@ -144,9 +144,10 @@ def get_ids(self):
144
144
if str (resp ['id' ]) == self .network_id :
145
145
self .account_id = resp ['account_id' ]
146
146
if all_networks :
147
- _LOGGER .error (("More than one unboarded network. "
148
- "Platform may not work as intended. "
149
- "Please open an issue on %s" ), PROJECT_URL )
147
+ _LOGGER .warning (("More than one onboarded network. "
148
+ "Platform may not work as intended. "
149
+ "If you experience problems, please "
150
+ "open an issue on %s" ), PROJECT_URL )
150
151
151
152
def refresh (self , force_cache = False ):
152
153
"""
Original file line number Diff line number Diff line change 4
4
5
5
MAJOR_VERSION = 0
6
6
MINOR_VERSION = 10
7
- PATCH_VERSION = 1
7
+ PATCH_VERSION = 2
8
8
9
9
__version__ = '{}.{}.{}' .format (MAJOR_VERSION , MINOR_VERSION , PATCH_VERSION )
10
10
Original file line number Diff line number Diff line change 1
- requests >= 2.12.4
2
- testtools
1
+ requests >= 2.20.0
2
+ testtools == 2.3.0
You can’t perform that action at this time.
0 commit comments