-
Notifications
You must be signed in to change notification settings - Fork 346
Releasing
Christoph Otter edited this page Jun 5, 2023
·
30 revisions
- Run
export NEW_COSMWASM_VERSION=0.10.0-alpha2
- Run
./devtools/set_version.sh "$NEW_COSMWASM_VERSION"
- Update
CHANGELOG.md
with the correct release date and commit changes - Create a PR with these changes
- When the PR is merged, checkout the branch they were merged into and run
(cd packages/crypto && cargo publish) \ && (cd packages/derive && cargo publish) \ && (cd packages/std && cargo publish) \ && (cd packages/schema-derive && cargo publish) \ && (cd packages/schema && cargo publish) \ && (cd packages/storage && cargo publish) \ && (cd packages/vm && cargo publish) \ && (cd packages/check && cargo publish)
- Run
git tag "v$NEW_COSMWASM_VERSION"
on the merge and check if everything looks solid - Run
git push && git push --tags