version bump

This commit is contained in:
Christien Rioux
2023-07-16 14:35:51 -04:00
parent 304e9fd117
commit 4a93f0867b
7 changed files with 147 additions and 827 deletions

13
version_bump.sh Executable file
View File

@@ -0,0 +1,13 @@
#!/bin/sh
set -e
if [ "$1" == "patch" ]; then
echo Bumping patch version
elif [ "$1" == "minor" ]; then
echo Bumping minor version
elif [ "$1" == "major" ]; then
echo Bumping major version
fi
cargo set-version --dry-run --bump $1