From 2a5828419030a0998345c77d57788b2550e7a025 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Lukas=20L=C3=BCftinger?= Date: Sat, 11 May 2024 22:50:05 +0200 Subject: [PATCH] bump version 0.4.0 -> 0.4.1 --- lolcatt/__init__.py | 2 +- pyproject.toml | 2 +- setup.py | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/lolcatt/__init__.py b/lolcatt/__init__.py index a82429c..67fd684 100644 --- a/lolcatt/__init__.py +++ b/lolcatt/__init__.py @@ -2,4 +2,4 @@ __author__ = """Lukas Lüftinger""" __email__ = 'lukas.lueftinger@outlook.com' -__version__ = '0.4.0' +__version__ = '0.4.1' diff --git a/pyproject.toml b/pyproject.toml index f975ee0..81a2c95 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -19,7 +19,7 @@ exclude = ''' ''' [tool.bumpver] -current_version = "0.4.0" +current_version = "0.4.1" version_pattern = "MAJOR.MINOR.PATCH" commit_message = "bump version {old_version} -> {new_version}" commit = true diff --git a/setup.py b/setup.py index 98ceea6..17039d9 100644 --- a/setup.py +++ b/setup.py @@ -44,6 +44,6 @@ test_suite='tests', tests_require=test_requirements, url='https://github.com/LokiLuciferase/lolcatt', - version='0.4.0', + version='0.4.1', zip_safe=False, )