From 7e30187e7d18adafa583e1a3dfee15f47856e8fa Mon Sep 17 00:00:00 2001 From: yuppity Date: Wed, 10 Feb 2021 22:33:31 +0200 Subject: [PATCH] Bumb version, release 0.3.0 Added ===== - Support locking and unlocking recordings (closes #25) - Exposed camera UUIDs (see GH PR #29) - Exposed camera host addresses (closes #27) Changed ======= - The `width=600` parameter of `UnifiVideoRecording.snapshot()` is now `width=0`. The change matches the behaviour of `UnifiVideoCamera.snapshot()` in that unless explicitly given, the width is determined by the UniFi Video server. See GH PR #29. --- CHANGELOG.md | 9 ++++++--- unifi_video/_version.py | 2 +- 2 files changed, 7 insertions(+), 4 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 65cad7e..84f555c 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,13 +1,16 @@ # CHANGELOG -## x.x.x (2021-0x-xx) +## 0.3.0 (2021-02-10) + +### Added +* Support for locking and unlocking recordings +* Exposed camera UUIDs (`UnifiVideoCamera.uuid`) +* Exposed camera host addresses (`UnifiVideoCamera.host`) ### Changed * The `width=600` parameter of `UnifiVideoRecording.snapshot()` is now `width=0`. The change matches the behaviour of `UnifiVideoCamera.snapshot()` in that unless explicitly given, the width is determined by the UniFi Video server. -* Expose camera UUIDs (`UnifiVideoCamera.uuid`) -* Expose camera host addresses (`UnifiVideoCamera.host`) ## 0.2.0 (2020-10-19) diff --git a/unifi_video/_version.py b/unifi_video/_version.py index 7fd229a..0404d81 100644 --- a/unifi_video/_version.py +++ b/unifi_video/_version.py @@ -1 +1 @@ -__version__ = '0.2.0' +__version__ = '0.3.0'