Skip to content
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 9 additions & 1 deletion RELEASING.md
Original file line number Diff line number Diff line change
Expand Up @@ -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` (`<!-- pilotfish vX.Y.Z -->`), 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 "<!-- pilotfish v${version} -->" templates/claude-md.orchestration.md
grep -q "## v${version} " CHANGELOG.md
```

5. Commit, then tag and publish:

```bash
git tag vX.Y.Z
Expand Down