セマンティックバージョニングに基づいてバージョンを計算
Calculates next semantic version based on bump type from current git tags or changelog.
/plugin marketplace add no-problem-dev/claude-code-plugins/plugin install release-flow@no-problem-plugins<bump-type> (major|minor|patch)現在のバージョンから次のバージョンを計算します。
$ARGUMENTS: バンプタイプ
major - メジャーバージョンアップ (1.2.3 → 2.0.0)minor - マイナーバージョンアップ (1.2.3 → 1.3.0)patch - パッチバージョンアップ (1.2.3 → 1.2.4)git tag --sort=-v:refname | head -1 でタグから取得📊 バージョン計算結果
現在のバージョン: v1.2.3
バンプタイプ: minor
次のバージョン: v1.3.0
次のステップ:
/release-prepare 1.3.0
| 変更内容 | タイプ | 例 |
|---|---|---|
| バグ修正のみ | patch | 1.2.3 → 1.2.4 |
| 新機能追加(後方互換) | minor | 1.2.3 → 1.3.0 |
| 破壊的変更 | major | 1.2.3 → 2.0.0 |