From 1f2a48f95eb66faf26f687e5fefd83410714e3b7 Mon Sep 17 00:00:00 2001 From: Sebastian Goscik Date: Sat, 8 Jul 2023 16:32:48 +0100 Subject: [PATCH] =?UTF-8?q?Bump=20version:=200.9.2=20=E2=86=92=200.9.3?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .bumpversion.cfg | 2 +- CHANGELOG.md | 4 ++++ Dockerfile | 2 +- pyproject.toml | 2 +- unifi_protect_backup/__init__.py | 2 +- 5 files changed, 8 insertions(+), 4 deletions(-) diff --git a/.bumpversion.cfg b/.bumpversion.cfg index 95f3947..d42396f 100644 --- a/.bumpversion.cfg +++ b/.bumpversion.cfg @@ -1,5 +1,5 @@ [bumpversion] -current_version = 0.9.2 +current_version = 0.9.3 commit = True tag = True diff --git a/CHANGELOG.md b/CHANGELOG.md index d9c3470..436dbb7 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,6 +4,10 @@ All notable changes to this project will be documented in this file. The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). +## [0.9.3] - 2023-07-08 +### Fixed +- Queued up downloads etc now wait for dropped connections to be re-established. + ## [0.9.2] - 2023-04-21 ### Fixed - Missing event checker ignoring the "ignored cameras" list diff --git a/Dockerfile b/Dockerfile index dfce9bd..5ae3b71 100644 --- a/Dockerfile +++ b/Dockerfile @@ -7,7 +7,7 @@ LABEL maintainer="ep1cman" WORKDIR /app -COPY dist/unifi_protect_backup-0.9.2.tar.gz sdist.tar.gz +COPY dist/unifi_protect_backup-0.9.3.tar.gz sdist.tar.gz # https://github.com/rust-lang/cargo/issues/2808 ENV CARGO_NET_GIT_FETCH_WITH_CLI=true diff --git a/pyproject.toml b/pyproject.toml index 492b575..be33369 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,7 +1,7 @@ [tool] [tool.poetry] name = "unifi_protect_backup" -version = "0.9.2" +version = "0.9.3" homepage = "https://github.com/ep1cman/unifi-protect-backup" description = "Python tool to backup unifi event clips in realtime." authors = ["sebastian.goscik "] diff --git a/unifi_protect_backup/__init__.py b/unifi_protect_backup/__init__.py index fe6cdef..278b52d 100644 --- a/unifi_protect_backup/__init__.py +++ b/unifi_protect_backup/__init__.py @@ -2,7 +2,7 @@ __author__ = """sebastian.goscik""" __email__ = 'sebastian@goscik.com' -__version__ = '0.9.2' +__version__ = '0.9.3' from .downloader import VideoDownloader from .event_listener import EventListener