1.9 KiB
1.9 KiB
update-changelog
Use this skill when a feature has shipped, a bug has been fixed, or a feature has been removed. It updates CHANGELOG.md with a new versioned entry.
Process
-
Read
CHANGELOG.md— find the current latest version number (top## [x.y.z]entry) -
Check recent git history for context on what changed:
git log --oneline -20 -
Read
docs/ROADMAP.md— check what moved to Completed since the last changelog entry -
Determine the version bump:
- Patch (0.1.x → 0.1.x+1): bug fixes, minor UI polish, no new user-facing features
- Minor (0.x.0 → 0.x+1.0): new features or meaningful enhancements
- Major (x.0.0 → x+1.0.0): breaking changes or significant redesigns (rare)
-
Write a new entry above the previous version, using today's date and the bumped version:
## [0.2.0] - YYYY-MM-DD ### Added - Feature name — brief description of what it does for users ### Changed - What changed and why ### Fixed - Bug description — what was wrong and what's right now ### Removed - What was removed and whyOnly include sections that apply. Skip empty sections.
-
Update
docs/HANDBOOK.mdif the change affects feature descriptions or known limitations (use theupdate-handbookskill or do it inline). -
Commit:
git add CHANGELOG.md git commit -m "chore: changelog v0.x.y"
Versioning rules
- Write entries for users, not developers ("Added initiative tracker" not "Added registerInitiativeHandlers to socket.ts")
- One entry per version bump — don't create multiple entries for the same version
- The
[Unreleased]section at the top is for changes not yet assigned a version; move them down when cutting a release - Keep descriptions brief but specific — "Fixed HP leak exposing enemy stats to players" beats "Fixed bug"