From 8f2cf2f53e49c344df4b5bb9ec787c9bda3010ee Mon Sep 17 00:00:00 2001 From: fortysix2ahead Date: Sat, 11 Nov 2023 15:12:45 +0100 Subject: [PATCH] Increased version from 0.1.1 to 0.1.2 --- pyproject.toml | 4 ++-- synophotos/__init__.py | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/pyproject.toml b/pyproject.toml index 8f6fc79..ab0fa70 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -2,7 +2,7 @@ name = "synophotos" authors = [{ name = "fortysix2ahead", email = "fortysix2ahead@gmail.com" }] maintainers = [{ name = "fortysix2ahead", email = "fortysix2ahead@gmail.com" }] -version = "0.1.1" +version = "0.1.2" description = "Command Line Interface Client for Synology Photos" readme = "README.md" keywords = ["synology", "photos", "terminal", "cli", "command line"] @@ -51,7 +51,7 @@ requires = ["flit_core >=3.2,<4"] build-backend = "flit_core.buildapi" [tool.bumpver] -current_version = "0.1.1" +current_version = "0.1.2" version_pattern = "MAJOR.MINOR.PATCH[-INC0]" commit_message = "Increased version from {old_version} to {new_version}" tag_message = "rel-{new_version}" diff --git a/synophotos/__init__.py b/synophotos/__init__.py index 57e7b64..e2ffb44 100644 --- a/synophotos/__init__.py +++ b/synophotos/__init__.py @@ -14,7 +14,7 @@ from synophotos.ui import dataclass_table from synophotos.webservice import SynoSession, WebService -__version__ = '0.1.1' +__version__ = '0.1.2' log = getLogger( __name__ )