summaryrefslogtreecommitdiff
path: root/release.sh
blob: 04e2f2f160c112080266ae6221f575e01580dd86 (plain)
1
2
3
4
5
6
7
if [ $# -eq 0 ]; then
    echo "You must pass the version number."
    exit 1
fi

sed -i "3s/.*/version = \"$1\"/" Cargo.toml
git tag -a "v$1" -m "Version $1"