Skip to content

Publishing

Simon Warta edited this page Dec 29, 2022 · 3 revisions
  1. export NEW_NOIS_VERSION="0.6.0-beta.2"
  2. Update version in Cargo.toml and lockfile: $(command -v gsed || echo sed) -i "s/^version =.*/version = \"$NEW_NOIS_VERSION\"/" Cargo.toml && cargo check
  3. git add Cargo.toml Cargo.lock && git commit -m "Set version: $NEW_NOIS_VERSION"
  4. Run git tag "v$NEW_NOIS_VERSION" and ensure everything looks fine in the git history
  5. Publish to crates.io: cargo publish
  6. git push && git push --tags
Clone this wiki locally