From d80cf9473ab227251111cfdb30a164a3f88b788e Mon Sep 17 00:00:00 2001 From: Karl Date: Mon, 28 Jul 2025 13:35:34 +0100 Subject: [PATCH] =?UTF-8?q?Bump=20version:=200.2.18=20=E2=86=92=200.2.19?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .bumpversion.toml | 2 +- Dockerfile | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.bumpversion.toml b/.bumpversion.toml index 0784fde..20ff2f6 100644 --- a/.bumpversion.toml +++ b/.bumpversion.toml @@ -1,5 +1,5 @@ [tool.bumpversion] -current_version = "0.2.18" +current_version = "0.2.19" parse = "(?P\\d+)\\.(?P\\d+)\\.(?P\\d+)" serialize = ["{major}.{minor}.{patch}"] replace = "{new_version}" diff --git a/Dockerfile b/Dockerfile index 0105169..9f3af4e 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.18" +ARG VERSION="0.2.19" LABEL version=$VERSION # Copy project files into the container