version-bump

Solid

Determines appropriate semantic version bumps based on changes. Use when deciding version numbers, evaluating breaking changes, or planning releases. Triggers on terms like "version", "semver", "breaking change", "major/minor/patch".

DevOps & Infrastructure 359 stars 65 forks Updated today MIT

Install

View on GitHub

Quality Score: 90/100

Stars 20%
85
Recency 20%
100
Frontmatter 20%
70
Documentation 15%
100
Issue Health 10%
50
License 10%
100
Description 5%
100

Skill Content

# Semantic Versioning Skill This skill helps determine appropriate version bumps following [Semantic Versioning](https://semver.org/). ## Version Format ``` MAJOR.MINOR.PATCH ``` - **MAJOR**: Breaking changes - **MINOR**: New features, backwards compatible - **PATCH**: Bug fixes, backwards compatible ## Version Bump Decision Tree ### MAJOR (X.0.0) - Breaking Changes Bump MAJOR when you make incompatible API changes: - Removed public functions, methods, or types - Changed function signatures (parameters, return types) - Renamed public APIs - Changed default behavior that breaks existing usage - Removed CLI flags or changed their meaning - Changed configuration file format incompatibly ### MINOR (0.X.0) - New Features Bump MINOR when you add functionality in a backwards compatible manner: - New commands or subcommands - New CLI flags - New configuration options - New output formats - New integrations or providers ### PATCH (0.0.X) - Bug Fixes Bump PATCH when you make backwards compatible bug fixes: - Fix incorrect behavior - Fix crashes or errors - Performance improvements (no API changes) - Documentation fixes - Internal refactoring (no behavior changes) ## Quick Reference | Change Type | Version Bump | |----------------------------------|--------------| | Breaking API change | MAJOR | | Removed feature | MAJOR | | New command/feature | MINOR | | New CLI flag ...

Details

Author
majiayu000
Repository
majiayu000/claude-skill-registry
Created
5 months ago
Last Updated
today
Language
HTML
License
MIT

Similar Skills

Semantically similar based on skill content — not just same category

Data & Documents Listed

semantic-versioning

Manages project versioning following Semantic Versioning (SemVer) principles. Calculates increments based on changes and synchronizes version across documentation and metadata. Use when the user asks to "bump the version", "prepare a release", or when the `changelog` skill calls for a release.

1 Updated 1 weeks ago
tuliosousapro
AI & Automation Solid

version-bumper

Automatically handles semantic version updates across plugin.json and marketplace catalog when user mentions version bump, update version, or release. Ensures version consistency in claude-code-plugins repository.

2,266 Updated today
jeremylongshore
AI & Automation Solid

semver-analyzer

Analyze code changes and determine semantic version bumps. Detect breaking changes automatically, suggest version bump (major/minor/patch), generate changelog entries, and validate version consistency.

1,034 Updated today
a5c-ai
AI & Automation Solid

version-bump-cx

Bump version, auto-generate CHANGELOG from git commits, update all versioned files, and refresh root + docs/ documentation to reflect the current project state

5,564 Updated today
diegosouzapw
AI & Automation Listed

release

Release management with changelog generation, semantic versioning, and readiness checks. TRIGGER when: user asks to prepare a release, generate a changelog, bump version, check release readiness, or create a release tag; user runs /release or /changelog. DO NOT TRIGGER when: writing commit messages (use conventional commits directly), deploying to infrastructure, debugging production issues.

1 Updated 1 weeks ago
DROOdotFOO