From release-manager
Analyzes git changes since last tag and bumps the project version following semantic versioning rules, updating version files, CHANGELOG.md, and creating a commit with a git tag.
How this command is triggered — by the user, by Claude, or both
Slash command
/release-manager:bump-versionThe summary Claude sees in its command listing — used to decide when to auto-load this command
Bump the project version following semantic versioning rules based on changes since last release. ## Steps 1. Find the current version: 2. Analyze changes since the last version: 3. Determine the version bump: 4. Update the version in all relevant files: 5. Update CHANGELOG.md with categorized changes. 6. Create a version commit: `chore: bump version to <new-version>`. 7. Create a git tag: `git tag v<new-version>`. ## Format ## Rules - Follow semver strictly: breaking = major, feature = minor, fix = patch. - Update ALL files that contain the version number. - Never skip a version ...
Bump the project version following semantic versioning rules based on changes since last release.
chore: bump version to <new-version>.git tag v<new-version>.Previous Version: <X.Y.Z>
New Version: <X.Y.Z>
Bump Type: <major|minor|patch>
Changes: <feat: N, fix: N, breaking: N>
6plugins reuse this command
First indexed Mar 30, 2026
npx claudepluginhub samuelj90/awesome-claude-code-toolkit --plugin release-manager/bump-versionAnalyzes git changes since last tag and bumps the project version following semantic versioning rules, updating version files, CHANGELOG.md, and creating a commit with a git tag.
/releaseGenerates changelog from git history since last tag, bumps version via major/minor/patch/custom arg, and creates local git tag with phased user approvals.
/releaseCreates a tagged release with auto-generated release notes from recent commits, supporting semantic version bumps via commit types or explicit flags.
/releaseAutomates semantic version releases: analyzes CHANGELOG changes, suggests bump type per conventions, updates version files, creates annotated git tag after confirmation.
/release-prepBumps project version, runs pre-release checks (tests, uncommitted changes, CI status), updates config files, and creates a git tag. Accepts --patch, --minor, --major, or an explicit version.
/update-versionBumps project versions across config files and documentation using git workspace review and version update skills. Supports automated scripts and manual edits.