Skip to content

Releasing

Simon Warta edited this page Jul 23, 2020 · 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/std && cargo publish) \
  && (cd packages/schema && cargo publish) \
  && (cd packages/storage && cargo publish) \
  && (cd packages/vm && cargo +nightly publish)
  1. Update CHANGELOG.md with the correct release date
  2. Run git tag "v$NEW_COSMWASM_VERSION" and check if everything looks solid
  3. Run git push && git push --tags
Clone this wiki locally