Skip to content

Commit 7ee57b2

Browse files
committed
Version bump
1 parent ccd393a commit 7ee57b2

File tree

2 files changed

+20
-12
lines changed

2 files changed

+20
-12
lines changed

Diff for: CHANGES.rst

+18-10
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,14 @@ Changelog
33

44
A list of changes between each release
55

6+
0.10.3 (2018-11-18)
7+
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
8+
- Use networks endpoint rather than homecreen to retrieve arm/disarm status (`@md-reddevil <https://github.com/fronzbot/blinkpy/pull/119>`__)
9+
- Fix incorrect command status endpoint (`@md-reddevil <https://github.com/fronzbot/blinkpy/pull/118>`__)
10+
- Add extra debug logging
11+
- Remove error prior to re-authorization (only log error when re-auth failed)
12+
13+
614
0.10.2 (2018-10-30)
715
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
816
- Set minimum required version of the requests library to 2.20.0 due to vulnerability in earlier releases.
@@ -11,19 +19,19 @@ A list of changes between each release
1119

1220
0.10.1 (2018-10-18)
1321
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
14-
- Fix re-authorization bug (fixes `#101 <https://github.com/fronzbot/blinkpy/issues/#101>`_)
22+
- Fix re-authorization bug (fixes `#101 <https://github.com/fronzbot/blinkpy/issues/#101>`__)
1523
- Log an error if saving video that doesn't exist
1624

1725
0.10.0 (2018-10-16)
1826
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
1927
- Moved all API calls to own module for easier maintainability
2028
- Added network ids to sync module and cameras to allow for multi-network use
21-
- Removed dependency on video existance prior to camera setup (fixes `#93 <https://github.com/fronzbot/blinkpy/issues/#93>`_)
29+
- Removed dependency on video existance prior to camera setup (fixes `#93 <https://github.com/fronzbot/blinkpy/issues/#93>`__)
2230
- Camera wifi_strength now reported in wifi "bars" rather than dBm due to API endpoint change
2331
- Use homescreen thumbnail as fallback in case it's not in the camera endpoint
2432
- Removed "armed" and "status" attributes from camera (status of camera only reported by "motion_enabled" now)
2533
- Added serial number attributes to sync module and cameras
26-
- Check network_id from login response and verify that network is onboarded (fixes `#90 <https://github.com/fronzbot/#90>`_)
34+
- Check network_id from login response and verify that network is onboarded (fixes `#90 <https://github.com/fronzbot/#90>`__)
2735
- Check if retrieved clip is "None" prior to storing in cache
2836

2937
0.9.0 (2018-09-27)
@@ -55,26 +63,26 @@ A list of changes between each release
5563

5664
0.8.0 (2018-05-21)
5765
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
58-
- Added support for battery voltage level (fixes `#64 <https://github.com/fronzbot/blinkpy/issues/64>`_)
66+
- Added support for battery voltage level (fixes `#64 <https://github.com/fronzbot/blinkpy/issues/64>`__)
5967
- Added motion detection per camera
6068
- Added fully accessible camera configuration dict
61-
- Added celcius property to camera (fixes `#60 <https://github.com/fronzbot/blinkpy/issues/60>`_)
69+
- Added celcius property to camera (fixes `#60 <https://github.com/fronzbot/blinkpy/issues/60>`__)
6270

6371
0.7.1 (2018-05-09)
6472
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
65-
- Fixed pip 10 import issue during setup (`@fronzbot <https://github.com/fronzbot/blinkpy/pull/61>`_)
73+
- Fixed pip 10 import issue during setup (`@fronzbot <https://github.com/fronzbot/blinkpy/pull/61>`__)
6674

6775
0.7.0 (2018-02-08)
6876
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
6977
- Fixed style errors for bumped pydocstring and pylint versions
70-
- Changed Blink.cameras dictionary to be case-insensitive (fixes `#35 <https://github.com/fronzbot/blinkpy/issues/35>`_)
71-
- Changed api endpoint for video extraction (fixes `#35 <https://github.com/fronzbot/blinkpy/issues/35>`_ and `#41 <https://github.com/fronzbot/blinkpy/issues/41>`_)
78+
- Changed Blink.cameras dictionary to be case-insensitive (fixes `#35 <https://github.com/fronzbot/blinkpy/issues/35>`__)
79+
- Changed api endpoint for video extraction (fixes `#35 <https://github.com/fronzbot/blinkpy/issues/35>`__ and `#41 <https://github.com/fronzbot/blinkpy/issues/41>`__)
7280
- Removed last_motion() function from Blink class
7381
- Refactored code for better organization
7482
- Moved some request calls out of @property methods (enables future CLI support)
7583
- Renamed get_summary() method to summary and changed to @property
7684
- Added ability to download most recent video clip
77-
- Improved camera arm/disarm handling (`@b10m <https://github.com/fronzbot/blinkpy/pull/50>`_)
85+
- Improved camera arm/disarm handling (`@b10m <https://github.com/fronzbot/blinkpy/pull/50>`__)
7886
- Added authentication to ``login()`` function and deprecated ``setup_system()`` in favor of ``start()``
7987
- Added ``attributes`` dictionary to camera object
8088

@@ -83,7 +91,7 @@ A list of changes between each release
8391
- Removed redundent properties that only called hidden variables
8492
- Revised request wrapper function to be more intelligent
8593
- Added tests to ensure exceptions are caught and handled (100% coverage!)
86-
- Added auto-reauthorization (token refresh) when a request fails due to an expired token (`@tySwift93 <https://github.com/fronzbot/blinkpy/pull/24>`_)
94+
- Added auto-reauthorization (token refresh) when a request fails due to an expired token (`@tySwift93 <https://github.com/fronzbot/blinkpy/pull/24>`__)
8795
- Added battery level string to reduce confusion with the way Blink reports battery level as integer from 0 to 3
8896

8997
0.5.2 (2017-03-12)

Diff for: blinkpy/helpers/constants.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,8 @@
33
import os
44

55
MAJOR_VERSION = 0
6-
MINOR_VERSION = 11
7-
PATCH_VERSION = '0.dev'
6+
MINOR_VERSION = 10
7+
PATCH_VERSION = 3
88

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

0 commit comments

Comments
 (0)