Compare commits

...

2 Commits

Author SHA1 Message Date
2b601a5e44 Bump version: 1.2.2 → 1.2.3
All checks were successful
Build and Publish Docker Image / build-and-push (push) Successful in 1m31s
2025-07-15 18:00:27 +01:00
12707cccc0 bump a push 2025-07-15 18:00:21 +01:00
3 changed files with 20 additions and 2 deletions

View File

@ -1,5 +1,5 @@
[tool.bumpversion] [tool.bumpversion]
current_version = "1.2.2" current_version = "1.2.3"
commit = true commit = true
tag = true tag = true
tag_name = "{new_version}" tag_name = "{new_version}"

View File

@ -1 +1 @@
1.2.2 1.2.3

18
bump_and_push.sh Normal file
View File

@ -0,0 +1,18 @@
#!/bin/bash
set -ex
# Check if an argument is provided
if [ -z "$1" ]; then
echo "Usage: $0 <part>"
echo "Example: $0 patch"
exit 1
fi
PART=$1
# Bump the version
bump-my-version bump $PART
# Push the changes
git push
git push origin --tags