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 364 stars 68 forks Updated today MIT

Install

View on GitHub

Quality Score: 89/100

Stars 20%
85
Recency 20%
100
Frontmatter 20%
70
Documentation 15%
100
Issue Health 10%
80
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