Bump version: 0.3.6 → 0.3.7

This commit is contained in:
Karl 2025-08-12 15:17:34 +01:00
parent 82f29a4fde
commit 34f8a05035
2 changed files with 2 additions and 2 deletions

View File

@ -1,5 +1,5 @@
[tool.bumpversion]
current_version = "0.3.6"
current_version = "0.3.7"
parse = "(?P<major>\\d+)\\.(?P<minor>\\d+)\\.(?P<patch>\\d+)"
serialize = ["{major}.{minor}.{patch}"]
replace = "{new_version}"

View File

@ -4,7 +4,7 @@ FROM python:3.11-slim
# Set the working directory in the container
WORKDIR /app
# Set version label
ARG VERSION="0.3.6"
ARG VERSION="0.3.7"
LABEL version=$VERSION
# Copy project files into the container