From 8665ab431caa21d556cfc8d079ee1f4a775167ce Mon Sep 17 00:00:00 2001 From: Karl Date: Thu, 10 Jul 2025 17:12:14 +0100 Subject: [PATCH] rework version --- .bumpversion.toml | 16 ++++++---------- Dockerfile | 2 +- 2 files changed, 7 insertions(+), 11 deletions(-) diff --git a/.bumpversion.toml b/.bumpversion.toml index 034e2e4..aa4b195 100644 --- a/.bumpversion.toml +++ b/.bumpversion.toml @@ -1,9 +1,14 @@ [tool.bumpversion] -current_version = "0.2.12" +current_version = "0.2.13" parse = "(?P\\d+)\\.(?P\\d+)\\.(?P\\d+)" serialize = ["{major}.{minor}.{patch}"] replace = "{new_version}" regex = false +tag = true +commit = true +message = "Bump version: {current_version} → {new_version}" +tag_name = "{new_version}" +tag_message = "Bump version: {current_version} → {new_version}" [[tool.bumpversion.files]] filename = ".bumpversion.toml" @@ -14,15 +19,6 @@ replace = 'current_version = "{new_version}"' filename = "Dockerfile" search = 'ARG VERSION="{current_version}"' replace = 'ARG VERSION="{new_version}"' -ignore_missing_version = false -ignore_missing_files = false -tag = true -sign_tags = false -tag_name = "{new_version}" -tag_message = "Bump version: {current_version} → {new_version}" -allow_dirty = false -commit = true -message = "Bump version: {current_version} → {new_version}" moveable_tags = [] commit_args = "" setup_hooks = [] diff --git a/Dockerfile b/Dockerfile index 42e31f7..a10ca30 100644 --- a/Dockerfile +++ b/Dockerfile @@ -4,7 +4,7 @@ FROM python:3.11-slim # Set the working directory in the container WORKDIR /app # Set version label -ARG VERSION="0.2.12" +ARG VERSION="0.2.13" LABEL version=$VERSION # Copy project files into the container