From 34d1040669a1139039cd8695f655e8a450750110 Mon Sep 17 00:00:00 2001 From: Val Alexander <68980965+BunsDev@users.noreply.github.com> Date: Wed, 10 Jun 2026 23:33:08 -0500 Subject: [PATCH] docs(spec): make workspace version reference drift-proof 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) --- spec/13_rust_codebase.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/spec/13_rust_codebase.md b/spec/13_rust_codebase.md index 0b67f1ed..6f3326ef 100644 --- a/spec/13_rust_codebase.md +++ b/spec/13_rust_codebase.md @@ -16,7 +16,7 @@ Important current identifiers: | Item | Current value | |---|---| | Workspace path | `src-rust/` | -| Workspace version | `0.0.24` | +| Workspace version | see `src-rust/Cargo.toml` `[workspace.package]` (not stamped by `scripts/bump-version.py`) | | Binary package | `claurst` | | Installed binary | `coven-code` | | Runtime config dir | `~/.coven-code/` |