All skills
Skillintermediate
bump version
Bump the project version following semantic versioning rules based on changes since last release.
Claude Code Knowledge Pack7/10/2026
Overview
Bump the project version following semantic versioning rules based on changes since last release.
Steps
- Find the current version:
- Analyze changes since the last version:
- Determine the version bump:
- Update the version in all relevant files:
- Update CHANGELOG.md with categorized changes.
- Create a version commit:
chore: bump version to <new-version>. - Create a git tag:
git tag v<new-version>.
Format
Previous Version: <X.Y.Z>
New Version: <X.Y.Z>
Bump Type: <major|minor|patch>
Changes: <feat: N, fix: N, breaking: N>
Rules
- Follow semver strictly: breaking = major, feature = minor, fix = patch.
- Update ALL files that contain the version number.
- Never skip a version number.