blob: 473b99798572b4df1a9554fea9e6d3313aa74c4c (
plain)
1
2
3
4
5
6
7
8
9
|
if [ $# -eq 0 ]; then
echo "You must pass the version number."
exit 1
fi
sed -i "3s/.*/version = \"$1\"/" Cargo.toml
git add Carto.toml
git commit -m "release: version $1"
git tag -a "v$1" -m "Version $1"
|