Compare commits
6 Commits
65356eef6f
...
32ca9b5dfb
Author | SHA1 | Date | |
---|---|---|---|
32ca9b5dfb | |||
cb7c994e11 | |||
f03f56f76b | |||
7d98dd82c9 | |||
c389ffb496 | |||
5e76631c75 |
@ -1,5 +1,5 @@
|
||||
[tool.bumpversion]
|
||||
current_version = "1.3.3"
|
||||
current_version = "1.3.6"
|
||||
commit = true
|
||||
tag = true
|
||||
tag_name = "{new_version}"
|
||||
|
18
bump_and_push.sh
Normal file
18
bump_and_push.sh
Normal 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
|
Loading…
x
Reference in New Issue
Block a user