Bump version: 0.1.0 → 0.1.1

This commit is contained in:
Sebastian Goscik
2022-02-20 16:05:56 +00:00
parent 821bf10adb
commit dd0ccfd64d
4 changed files with 5 additions and 5 deletions

View File

@@ -1,5 +1,5 @@
[bumpversion]
current_version = 0.1.0
current_version = 0.1.1
commit = True
tag = True
@@ -13,4 +13,4 @@ replace = __version__ = '{new_version}'
[bumpversion:file:Dockerfile]
search = COPY dist/unifi-protect-backup-{current_version}.tar.gz sdist.tar.gz
replace =COPY dist/unifi-protect-backup-{new_version}.tar.gz sdist.tar.gz
replace = COPY dist/unifi-protect-backup-{new_version}.tar.gz sdist.tar.gz

View File

@@ -5,7 +5,7 @@ FROM python:3.9-alpine
WORKDIR /app
RUN apk add gcc musl-dev zlib-dev jpeg-dev rclone
COPY dist/unifi-protect-backup-0.1.0.tar.gz sdist.tar.gz
COPY dist/unifi-protect-backup-0.1.1.tar.gz sdist.tar.gz
RUN pip install sdist.tar.gz
ENV UFP_USERNAME=unifi_protect_user

View File

@@ -1,7 +1,7 @@
[tool]
[tool.poetry]
name = "unifi-protect-backup"
version = "0.1.0"
version = "0.1.1"
homepage = "https://github.com/ep1cman/unifi-protect-backup"
description = "Python tool to backup unifi event clips in realtime."
authors = ["sebastian.goscik <sebastian@goscik.com>"]

View File

@@ -2,6 +2,6 @@
__author__ = """sebastian.goscik"""
__email__ = 'sebastian@goscik.com'
__version__ = '0.1.0'
__version__ = '0.1.1'
from .unifi_protect_backup import UnifiProtectBackup