docs(spec): drift-proof the workspace version in spec/13 (follow-up to #58)#75
Merged
Conversation
The rewritten spec/13 (PR #67) hardcoded the workspace version, which was already stale one release later (said 0.0.24; current is 0.0.25) because scripts/bump-version.py does not stamp spec/. Point at the canonical source instead of a literal. Follow-up to #58. Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
|
The latest updates on your projects. Learn more about Vercel for GitHub.
|
There was a problem hiding this comment.
Pull request overview
This PR prevents future version drift in the Rust codebase spec by replacing a hardcoded workspace version with a pointer to the canonical version source in the Rust workspace manifest (src-rust/Cargo.toml’s [workspace.package]).
Changes:
- Replace the literal workspace version in
spec/13_rust_codebase.mdwith a reference tosrc-rust/Cargo.toml [workspace.package]so the spec can’t go stale when releases bump the version.
💡 Add Copilot custom instructions for smarter, more guided reviews. Learn how to get started.
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.
Verification follow-up to #58. The rewritten spec/13 is accurate (zero stale
cc-*/claude-code-rustidentifiers remain), but it hardcoded the workspace version, which went stale one release later — it says 0.0.24, current is 0.0.25 — becausescripts/bump-version.pydoesn't stampspec/. Replace the literal with a pointer to the canonical source (src-rust/Cargo.toml [workspace.package]) so it can never drift again.🤖 Generated with Claude Code