Add version script

This commit is contained in:
Félix Saparelli 2021-04-10 22:44:11 +12:00
parent 5e4af976de
commit 3a3ae89046
1 changed files with 51 additions and 0 deletions

51
bin/version Executable file
View File

@ -0,0 +1,51 @@
#!/usr/bin/env bash
set -euo pipefail
app="watchexec"
mainbranch="main"
upstream_rx="watchexec/"
curbranch=$(git rev-parse --abbrev-ref HEAD)
if [[ "$curbranch" != "$mainbranch" ]]; then
echo "Current branch is not $mainbranch, abort!"
exit 1
fi
gitstatus=$(git status --untracked-files=no --porcelain)
if [[ ! -z "$gitstatus" ]]; then
echo "Uncommited files and changes, abort!"
exit 2
fi
upstream=$(git remote -v | grep -i "$upstream_rx" -m1 | awk '{print $1}')
echo "Upstream remote discovered as: $upstream"
echo "Pulling from upstream"
git pull --rebase --autostash $upstream $mainbranch
echo "Fetching tags from upstream"
git fetch --tags "$upstream"
extver=$(grep -P '^version =' Cargo.toml | cut -d'"' -f2)
echo "(Version from Cargo.toml: $extver)"
newver="$1"
if [[ "$newver" == "$extver" ]]; then
echo "New and existing versions are the same, abort!"
exit 3
fi
date=$(date +%Y-%m-%d)
echo "Next version to be $newver ($date), creating..."
sed -E -i "s/^version = \"[0-9.]+\"/version = \"$newver\"/" Cargo.toml
cargo check
git commit -am "$newver"
git tag -sam "$newver" "$newver"
echo "Pushing to upstream"
git push --follow-tags $upstream $mainbranch