Compare commits

..

6 Commits

Author SHA1 Message Date
32ca9b5dfb Bump version: 1.3.5 → 1.3.6
All checks were successful
Build and Publish Docker Image / build-and-push (push) Successful in 3m15s
2025-07-15 17:59:52 +01:00
cb7c994e11 try using a script 2025-07-15 17:59:49 +01:00
f03f56f76b Bump version: 1.3.4 → 1.3.5
All checks were successful
Build and Publish Docker Image / build-and-push (push) Successful in 3m18s
2025-07-15 17:58:44 +01:00
7d98dd82c9 try push = true 2025-07-15 17:58:40 +01:00
c389ffb496 Bump version: 1.3.3 → 1.3.4
All checks were successful
Build and Publish Docker Image / build-and-push (push) Successful in 3m18s
2025-07-15 17:56:49 +01:00
5e76631c75 test new bump code 2025-07-15 17:56:43 +01:00
3 changed files with 20 additions and 2 deletions

View File

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

View File

@ -1 +1 @@
1.3.3 1.3.6

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