-
Notifications
You must be signed in to change notification settings - Fork 336
Releasing
Simon Warta edited this page Dec 6, 2022
·
30 revisions
- Run
export NEW_COSMWASM_VERSION=0.10.0-alpha2
- Run
./devtools/set_version.sh "$NEW_COSMWASM_VERSION"
- Run
(cd packages/crypto && cargo publish) \ && (cd packages/derive && cargo publish) \ && sleep 15 \ && (cd packages/std && cargo publish) \ && sleep 10 \ && (cd packages/schema-derive && cargo publish) \ && sleep 15 \ && (cd packages/schema && cargo publish) \ && (cd packages/storage && cargo publish) \ && (cd packages/vm && cargo publish) \ && sleep 15 \ && (cd packages/check && cargo publish)
- Update
CHANGELOG.md
with the correct release date and commit changes - Run
git tag "v$NEW_COSMWASM_VERSION"
and check if everything looks solid - Run
git push && git push --tags