Compare commits

..

No commits in common. "2b601a5e445772c1cf19d13430c02e8f1cccaf68" and "4a3c21568b70bbe67b57a08489e6af94fbd190fc" have entirely different histories.

3 changed files with 2 additions and 20 deletions

View File

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

View File

@ -1 +1 @@
1.2.3
1.2.2

View File

@ -1,18 +0,0 @@
#!/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