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()