From a79ca036beaf70e3bc352bb13165ca9b895a0c8d Mon Sep 17 00:00:00 2001 From: Claude Date: Tue, 10 Feb 2026 12:42:19 +0000 Subject: [PATCH] fix(ci): always bump patch version in release-please Add "versioning": "always-bump-patch" to release-please config so that all commits result in a patch version bump regardless of conventional commit type (feat, fix, etc.). https://claude.ai/code/session_0139XJqzQZP8N7DxEHRy7S9q --- release-please-config.json | 1 + 1 file changed, 1 insertion(+) diff --git a/release-please-config.json b/release-please-config.json index 52e988e..3204509 100644 --- a/release-please-config.json +++ b/release-please-config.json @@ -2,6 +2,7 @@ "packages": { ".": { "release-type": "go", + "versioning": "always-bump-patch", "changelog-sections": [ { "type": "feat", "section": "Features" }, { "type": "fix", "section": "Bug Fixes" },