Skip to content

Releasing

Tomasz Kurcz edited this page Mar 27, 2024 · 3 revisions

Prerequisites

Releasing

Assuming you want to release the 1.0.0 version:

  1. Make sure you're up to date with the remote, on the correct branch, and your working tree is clean.
  2. github_changelog_generator --token YOUR_TOKEN_HERE -u CosmWasm -p cw-plus --base CHANGELOG.md --future-release v1.0.0
  3. Commit the changes.
  4. cargo release 1.0.0 --no-tag --execute (you can try a dry run first by omitting --execute)
  5. git tag v1.0.0
  6. git push origin tag v1.0.0
Clone this wiki locally