diff --git a/CHANGES.rst b/CHANGES.rst index e1759c9..310b233 100644 --- a/CHANGES.rst +++ b/CHANGES.rst @@ -4,6 +4,35 @@ Changelog A list of changes between each release +0.16.0 (2020-07-20) +~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + +**Breaking Changes:** + +- Add arm property to camera, deprecate motion enable method (`#273 `__) +- Complete refactoring of auth logic (breaks all pre-0.16.0 setups!) (`#261 `__) + +**New Features:** + +- Add is_errored property to Auth class (`#275 `__) +- Add new endpoint to get user infor (`#280 `__) +- Add get_liveview command to camera module (`#289 `__) +- Add blink Mini Camera support (`#290 `__) +- Add option to skip homescreen check (`#305 `__) +- Add different timeout for video and image retrieval (`#323 `__) +- Modifiy session to use HTTPAdapter and handle retries (`#324 `__) +- Add retry option overrides (`#339 `__) + +**All changes:** + +Please see the change list in the (`Release Notes `__) + + +0.15.1 (2020-07-11) +~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +- Bugfix: remove "Host" from auth header (`#330 `__) + + 0.15.0 (2020-05-08) ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ **Breaking Changes:** diff --git a/blinkpy/helpers/constants.py b/blinkpy/helpers/constants.py index d997523..180e659 100644 --- a/blinkpy/helpers/constants.py +++ b/blinkpy/helpers/constants.py @@ -4,7 +4,7 @@ import os MAJOR_VERSION = 0 MINOR_VERSION = 16 -PATCH_VERSION = "0-rc13" +PATCH_VERSION = 0 __version__ = f"{MAJOR_VERSION}.{MINOR_VERSION}.{PATCH_VERSION}"