Prepare and publish a new version release with changelog and git tags
/plugin install release@max-skillsPrepare and publish a versioned release for this project.
Determine the version bump — review commits since the last tag and apply semver rules (see references/semver.md). Use the highest applicable bump across all changes.
Update version — bump the version field in package.json (and any other manifest files the project uses).
Generate changelog — append a new section to CHANGELOG.md (create it if absent) using this format:
Pull entries from commit messages since the previous tag. Group by type. Skip chore/ci entries unless they're user-visible.
Run the pre-release checklist — work through every item in checklists/pre-release.md before continuing.
Commit and tag:
Push — push the commit and tag:
Report — summarise what changed, what version was released, and any items from the checklist that required manual attention.
by Skills Marketplace · MIT
## [x.y.z] — YYYY-MM-DD### Breaking Changes- ...### Features- ...### Bug Fixes- ...git add package.json CHANGELOG.mdgit commit -m "chore: release vx.y.z"git tag vx.y.zgit push && git push --tags