diff --git a/RELEASING.md b/RELEASING.md index 0acf675..eb44558 100644 --- a/RELEASING.md +++ b/RELEASING.md @@ -5,7 +5,15 @@ Maintainer checklist — the three version stamps must move together: 1. Bump `VERSION`. 2. Update the version comment in `templates/claude-md.orchestration.md` (``), and mirror the block into your own `~/.claude/CLAUDE.md`. 3. Add the `CHANGELOG.md` entry (what changed, why — users see this during update). -4. Commit, then tag and publish: +4. Verify the repo stamps agree: + +```bash +version="$(cat VERSION)" +grep -q "" templates/claude-md.orchestration.md +grep -q "## v${version} " CHANGELOG.md +``` + +5. Commit, then tag and publish: ```bash git tag vX.Y.Z