# release.toml — cargo-release configuration
#
# When `cargo release` runs, it bumps the version in Cargo.toml and then applies
# the replacements below to keep all package manifests in sync. No version-setting
# commands are needed in CI — by the time a tag is pushed, every manifest already
# contains the correct version.
= false
# Main npm package version
[[]]
= "npm/package.json"
= '"version": "[^"]*"'
= '"version": "{{version}}"'
# Python package version
[[]]
= "python/pyproject.toml"
= 'version = "[^"]*"'
= 'version = "{{version}}"'