Bump the version in all manifest files. For example, to go from 0.1.0 → 0.2.0:
Cargo.toml—[workspace.package] versionsrc/nanvix_sandbox/Cargo.toml—[package] version(excluded from workspace, must be updated manually)
All other workspace member crates inherit the version automatically.
pyproject.toml(root dev package)src/sdk/python/core/pyproject.toml(also updateoptional-dependenciesversion constraints)src/sdk/python/hyperlight_js_backend/pyproject.tomlsrc/sdk/python/wasm_backend/pyproject.tomlsrc/sdk/python/wasm_guests/javascript_guest/pyproject.tomlsrc/sdk/python/wasm_guests/python_guest/pyproject.toml
src/wasm_sandbox/guests/javascript/package.json
just build
just fmt-checkOpen a PR with the version bump, get it reviewed, and merge to main.
git checkout main
git pull --ff-only
git tag -s -a v0.2.0 -m "v0.2.0"
git push --tagsReplace v0.2.0 with the version you are releasing.