From 161db3fd2e2ec4d6db2899c89fc49a7922cb63a5 Mon Sep 17 00:00:00 2001 From: droserasprout Date: Fri, 15 Jan 2021 18:54:35 +0300 Subject: [PATCH] =?UTF-8?q?Bump=20version:=201.1.0=20=E2=86=92=201.1.1?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .bumpversion.cfg | 4 ++-- pyproject.toml | 2 +- src/pacman_fix_permissions/__init__.py | 2 +- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/.bumpversion.cfg b/.bumpversion.cfg index b8ababd..19c30ed 100644 --- a/.bumpversion.cfg +++ b/.bumpversion.cfg @@ -1,5 +1,5 @@ [bumpversion] -current_version = 1.1.0 +current_version = 1.1.1 commit = true tag = true @@ -9,4 +9,4 @@ replace = version = "{new_version}" [bumpversion:file:src/pacman_fix_permissions/__init__.py] search = __version__ = "{current_version}" -replace = __version__ = "{new_version}" \ No newline at end of file +replace = __version__ = "{new_version}" diff --git a/pyproject.toml b/pyproject.toml index 14519a7..d1734be 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "pacman-fix-permissions" -version = "1.1.0" +version = "1.1.1" description = "fix broken filesystem permissions" authors = ["Lev Gorodetskiy "] license = "GPL-3.0-only" diff --git a/src/pacman_fix_permissions/__init__.py b/src/pacman_fix_permissions/__init__.py index 64a51ed..25fd220 100644 --- a/src/pacman_fix_permissions/__init__.py +++ b/src/pacman_fix_permissions/__init__.py @@ -9,7 +9,7 @@ import zstandard as zstd -__version__ = "1.1.0" +__version__ = "1.1.1" logging.basicConfig(level=logging.INFO, format="%(message)s") logger = logging.getLogger()