veilid/version_bump.sh
Christien Rioux 960a4cb964 Revert "version bump fix"
This reverts commit 2d291b86b64542845bc10c092e8ad6a78e8b85df.
2023-09-16 16:51:59 -04:00

32 lines
747 B
Bash
Executable File

#!/bin/bash
# Fail out if any step has an error
set -e
if [ "$1" == "patch" ]; then
echo Bumping patch version
PART=patch
elif [ "$1" == "minor" ]; then
echo Bumping minor version
PART=minor
elif [ "$1" == "major" ]; then
echo Bumping major version
PART=major
else
echo Unsupported part! Specify 'patch', 'minor', or 'major'
exit 1
fi
# Change version of crates and packages everywhere
bumpversion $PART
# Get the new version we bumped to
NEW_VERSION=$(cat .bumpversion.cfg | grep current_version\ = | cut -d\ -f3)
echo NEW_VERSION=$NEW_VERSION
# Update crate dependencies for the crates we publish
cargo upgrade veilid-tools@$NEW_VERSION
cargo upgrade veilid-core@$NEW_VERSION
# Update lockfile
cargo update