fix: sync Cargo.toml workspace version to 0.8.3#393
Merged
toadkicker merged 1 commit intomainfrom May 8, 2026
Merged
Conversation
Contributor
|
| Filename | Overview |
|---|---|
| Cargo.toml | Bumps [workspace.package] version from 0.8.2 to 0.8.3 to match the VERSION file; all member crates use version.workspace = true so they will all pick up the new version automatically. |
Flowchart
%%{init: {'theme': 'neutral'}}%%
flowchart TD
A[VERSION file\n0.8.3] -->|"read by release workflow"| B[Release Workflow]
C[Cargo.toml\nworkspace version] -->|"used by Maturin"| D[Maturin Build]
D --> E[Python Wheel\npap_protocol-X.Y.Z-*.whl]
E --> F[PyPI Upload]
subgraph Before Fix
C1[Cargo.toml v0.8.2] --> D1[Wheel: pap_protocol-0.8.2]
D1 --> F1["PyPI Rejected\n0.8.2 already exists"]
end
subgraph After Fix
C2[Cargo.toml v0.8.3] --> D2[Wheel: pap_protocol-0.8.3]
D2 --> F2["PyPI Accepted\nnew version"]
end
Reviews (1): Last reviewed commit: "fix: sync Cargo.toml workspace version t..." | Re-trigger Greptile
Benchmark Regression ReportThreshold: 10% regression vs baseline from main |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
Cargo.tomlfrom 0.8.2 to 0.8.3 to matchVERSIONfileContext
The Python SDK release workflow failed because:
VERSIONfile was bumped to 0.8.3Cargo.tomlworkspace version remained at 0.8.2pap_protocol-0.8.2-*.whlfilesThis fix ensures both version sources are in sync so the next release workflow produces 0.8.3 wheels.
Test plan
🤖 Generated with Claude Code