Commit 7ba1c53
committed
fix: strip v prefix from version in Cargo.toml and package.json, fix bump script
Cargo requires plain semver (0.4.0), not v-prefixed (v0.4.0). The
bump-version script was passing the user's input directly without
stripping the leading 'v', breaking `cargo build` and `cargo publish`.
- Strip 'v' prefix in bump_version() using ${1#v}
- Fix version check to tolerate either form
- Correct all Cargo.toml and package.json files from v0.4.0 to 0.4.0
- Sync all Cargo.lock files
Note: Python pyproject.toml files remain at 0.3.4 — re-run the fixed
bump script to complete the version update.1 parent b1ceb35 commit 7ba1c53
File tree
19 files changed
+30
-31
lines changed- .claude/worktrees
- compilers/rust
- end2end-example/rust
- examples/rust
- integration/rust
- packages
- runar-cli
- runar-compiler
- runar-ir-schema
- runar-lang
- runar-rs-macros
- runar-rs
- runar-sdk
- runar-testing
- scripts
19 files changed
+30
-31
lines changedThis file was deleted.
This file was deleted.
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
1 | 1 | | |
2 | 2 | | |
3 | | - | |
| 3 | + | |
4 | 4 | | |
5 | 5 | | |
6 | 6 | | |
| |||
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
1 | 1 | | |
2 | 2 | | |
3 | | - | |
| 3 | + | |
4 | 4 | | |
5 | 5 | | |
6 | 6 | | |
| |||
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
1 | 1 | | |
2 | 2 | | |
3 | | - | |
| 3 | + | |
4 | 4 | | |
5 | 5 | | |
6 | 6 | | |
| |||
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
1 | 1 | | |
2 | 2 | | |
3 | | - | |
| 3 | + | |
4 | 4 | | |
5 | 5 | | |
6 | 6 | | |
| |||
0 commit comments