From 511bcb117320e81b23fab8cad1a3afa158e20dcc Mon Sep 17 00:00:00 2001 From: Brad Fair Date: Wed, 22 Apr 2026 11:13:44 -0500 Subject: [PATCH] ci(release): keep 0.x bumps pre-major Breaking commits were pushing the next release to 1.0.0. Enable bump-minor-pre-major and bump-patch-for-minor-pre-major so 0.x stays under 1.0 until we explicitly cut a major. --- release-please-config.json | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/release-please-config.json b/release-please-config.json index ada86e1..b077dd8 100644 --- a/release-please-config.json +++ b/release-please-config.json @@ -4,7 +4,9 @@ ".": { "release-type": "go", "package-name": "ana-cli", - "include-component-in-tag": false + "include-component-in-tag": false, + "bump-minor-pre-major": true, + "bump-patch-for-minor-pre-major": true } } }