#!/bin/sh [ -z "$(git status --porcelain)" ] || (echo "dirty working directory" && exit 1) current_version="$(grep '^version = ' Cargo.toml | head -1 | cut -d '"' -f2)" new_version="$1" if [ -z "$new_version" ]; then echo "New version required as argument" exit 1 fi echo ">>> Bumping version" readme_pattern='\(untitaker\/spacemod[@:]\)' sed -i.bak "s/version = \"$current_version\"/version = \"$new_version\"/" Cargo.toml rm Cargo.toml.bak echo ">>> Running tests" cargo build cargo test echo ">>> Commit" git add README.md git add Cargo.toml git commit -am "version $new_version" git tag v$new_version echo "things left to do:" echo " cargo publish" echo " npm publish https://github.com/untitaker/spacemod/releases/download/v$new_version/spacemod-npm-package.tar.gz"