ratatui/RELEASE.md
2023-03-19 18:11:15 +01:00

576 B

Creating a Release

crates.io releases are automated via GitHub actions and triggered by pushing a tag.

  1. Bump the version in Cargo.toml.
  2. Ensure CHANGELOG.md is updated. git-cliff can be used for generating the entries.
  3. Commit and push the changes.
  4. Create a new tag: git tag -a v[X.Y.Z]
  5. Push the tag: git push --tags
  6. Wait for Continuous Deployment workflow to finish.