You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

9 lines
312 B

3 years ago
# Release Workflow
1. Update version in `Cargo.toml`
1. Add entry in `CHANGELOG.md`
1. Commit change with semantic version number (`v0.1.1`)
1. Tag commit using `git tag -a <new release> -m "$(git shortlog <last release>..HEAD)"`
1. Push the tag using `git push --tags`
1. Publish package using `cargo publish`