From 9493ed2e24e7d3ffcc692e0d88a37c0d6d2da2a5 Mon Sep 17 00:00:00 2001 From: WorldTeacher Date: Fri, 17 Jan 2025 09:42:42 +0100 Subject: [PATCH] version change --- .bumpversion.toml | 6 +++--- .version | 2 +- src/__init__.py | 2 +- 3 files changed, 5 insertions(+), 5 deletions(-) diff --git a/.bumpversion.toml b/.bumpversion.toml index 798555b..3a5690a 100644 --- a/.bumpversion.toml +++ b/.bumpversion.toml @@ -1,17 +1,17 @@ [tool.bumpversion] -current_version = "0.2.3" +current_version = "0.2.4" parse = "(?P\\d+)\\.(?P\\d+)\\.(?P\\d+)" serialize = ["{major}.{minor}.{patch}"] search = "{current_version}" replace = "{new_version}" regex = false ignore_missing_version = false -tag = false +tag = true sign_tags = false tag_name = "v{new_version}" tag_message = "Bump version: {current_version} → {new_version}" allow_dirty = false -commit = false +commit = true message = "Bump version: {current_version} → {new_version}" commit_args = "" [[tool.bumpversion.files]] diff --git a/.version b/.version index 373f8c6..72f9fa8 100644 --- a/.version +++ b/.version @@ -1 +1 @@ -0.2.3 \ No newline at end of file +0.2.4 \ No newline at end of file diff --git a/src/__init__.py b/src/__init__.py index fbdf965..c08d089 100644 --- a/src/__init__.py +++ b/src/__init__.py @@ -4,7 +4,7 @@ from loguru import logger from datetime import datetime import atexit import argparse -__version__ = "0.2.3" +__version__ = "0.2.4" __author__ = "Alexander Kirchner" __email__ = "alexander.kirchner@ph-freiburg.de" __license__ = "MIT"