Skip to content

Releasing

Simon Warta edited this page Mar 3, 2021 · 30 revisions
  1. Run export NEW_COSMWASM_VERSION=0.10.0-alpha2
  2. Run ./devtools/set_version.sh "$NEW_COSMWASM_VERSION"
  3. Run
    (cd packages/crypto && cargo publish) \
      && (cd packages/derive && cargo publish) \
      && sleep 10 \
      && (cd packages/std && cargo publish) \
      && (cd packages/schema && cargo publish) \
      && (cd packages/storage && cargo publish) \
      && (cd packages/vm && cargo publish)
  4. Update CHANGELOG.md with the correct release date
  5. Run git tag "v$NEW_COSMWASM_VERSION" and check if everything looks solid
  6. Run git push && git push --tags
Clone this wiki locally