From release-manager
Bumps the project version following semantic versioning rules based on changes since the last release. Updates version files, changelog, and creates 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>
2plugins reuse this command
First indexed Mar 30, 2026
npx claudepluginhub costrict-plugins-repo/github-trending-plan --plugin release-manager/bump-versionBumps the project version following semantic versioning rules based on changes since the last release. Updates version files, changelog, and creates 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.
/releaseAutomates semantic version releases: analyzes CHANGELOG changes, suggests bump type per conventions, updates version files, creates annotated git tag after confirmation.
/releaseCreates a semantic version tag with auto-generated release notes from recent commits, bumps version in package files, commits changes, and pushes tag/release to GitHub.
/update-versionBumps project versions in config files (pyproject.toml, package.json, Cargo.toml) and docs (CHANGELOG.md, READMEs) via automated Python script or manual edits, verifies with git diff and tests.