diff options
| author | Paul Buetow <paul@buetow.org> | 2026-06-18 07:59:56 +0300 |
|---|---|---|
| committer | Paul Buetow <paul@buetow.org> | 2026-06-18 07:59:56 +0300 |
| commit | c1dbc781cf32a7d5496a137884179c9fda872732 (patch) | |
| tree | f6cba206e0f99c4094c80b6e1d85e28ae34e74be /prompts | |
| parent | 7449e07d87236af910650d3268cba1a90de4cefa (diff) | |
increment-version skill: prefer patch bumps for small changes
Amp-Thread-ID: https://ampcode.com/threads/T-019ed908-ca57-7251-8ff1-ce10c8c3a787
Co-authored-by: Amp <amp@ampcode.com>
Diffstat (limited to 'prompts')
| -rw-r--r-- | prompts/skills/increment-version-and-push/SKILL.md | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/prompts/skills/increment-version-and-push/SKILL.md b/prompts/skills/increment-version-and-push/SKILL.md index 81b8729..abb5a1f 100644 --- a/prompts/skills/increment-version-and-push/SKILL.md +++ b/prompts/skills/increment-version-and-push/SKILL.md @@ -15,7 +15,7 @@ Increment the version of the project, tag it in git, commit, and push. - For Go-based projects, look for the `internal/version.go` file. - We use semantic versioning: `x.y.z`. - - For bug fixes, increment only `z` (the patch version). - - For new features, increment `y` (the minor version) and reset `z` to 0. + - For small changes (including minor feature tweaks, config/default-value updates, and bug fixes), increment only `z` (the patch version). When in doubt, prefer a patch bump. + - For significant new features, increment `y` (the minor version) and reset `z` to 0. - Never increment `x` (the major version) unless explicitly specified. - Commit the version change, create a git tag matching the new version, and push both the commit and the tag. |
