diff options
| -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. |
