Skip to content

Latest commit

 

History

History
19 lines (14 loc) · 652 Bytes

RELEASE.md

File metadata and controls

19 lines (14 loc) · 652 Bytes

Release

Open a new PR with the title release: bump versions with the following changes:

  • Update version in Cargo.toml.
  • Run cargo update.
  • Update CHANGELOG.md with version and publication date.
  • Update the docs site to the new version (here)

Once the above PR merges:

  • Create git tag for the HEAD commit:
    git tag v{VERSION}
    
    • where {VERSION} is the new version being released
  • Push the tag: git push --tags.

And the CI should handle the rest!