Skip to content

Latest commit

 

History

History
45 lines (30 loc) · 620 Bytes

File metadata and controls

45 lines (30 loc) · 620 Bytes

Releasing

Checklist

  1. Update dependencies:
cargo update --workspace
  1. Run the tests:
cargo test
  1. Update the version number in Cargo.toml.

  2. Review the man page (verify the version number matches Cargo.toml):

cargo build
make show-man
  1. Commit and merge the version bump on a branch, then tag on main:
git add -A && git commit -m "<version>"

After the branch is merged:

git tag <version>
git push --tags
  1. Publish to crates.io:
cargo publish
  1. Update the Homebrew formula in the homebrew-tap repository.