Skip to content

Commit 80c6444

Browse files
authored
Merge pull request #112 from fronzbot/dev
0.10.2
2 parents e872fc9 + 2022b80 commit 80c6444

File tree

5 files changed

+17
-8
lines changed

5 files changed

+17
-8
lines changed

Diff for: CHANGES.rst

+6
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,12 @@ Changelog
33

44
A list of changes between each release
55

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+
612
0.10.1 (2018-10-18)
713
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
814
- Fix re-authorization bug (fixes `#101 <https://github.com/fronzbot/blinkpy/issues/#101>`_)

Diff for: README.rst

+4-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
1-
blinkpy |Build Status| |Coverage Status| |Docs| |PyPi Version|
2-
================================================================
1+
blinkpy |Build Status| |Coverage Status| |Docs| |PyPi Version| |Python Version|
2+
================================================================================
33
A Python library for the Blink Camera system
44
Only compatible with Python 3+
55

@@ -90,3 +90,5 @@ The ``blinkpy`` api also allows for saving images and videos to a file and snapp
9090
:target: https://pypi.python.org/pypi/blinkpy
9191
.. |Docs| image:: https://readthedocs.org/projects/blinkpy/badge/?version=latest
9292
: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

Diff for: blinkpy/blinkpy.py

+4-3
Original file line numberDiff line numberDiff line change
@@ -144,9 +144,10 @@ def get_ids(self):
144144
if str(resp['id']) == self.network_id:
145145
self.account_id = resp['account_id']
146146
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)
150151

151152
def refresh(self, force_cache=False):
152153
"""

Diff for: blinkpy/helpers/constants.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44

55
MAJOR_VERSION = 0
66
MINOR_VERSION = 10
7-
PATCH_VERSION = 1
7+
PATCH_VERSION = 2
88

99
__version__ = '{}.{}.{}'.format(MAJOR_VERSION, MINOR_VERSION, PATCH_VERSION)
1010

Diff for: requirements.txt

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
1-
requests>=2.12.4
2-
testtools
1+
requests>=2.20.0
2+
testtools==2.3.0

0 commit comments

Comments
 (0)