From ad4a8b26000c846bf58455595a1306cb8c74556a Mon Sep 17 00:00:00 2001 From: SaelixCode Date: Sat, 29 Aug 2026 04:18:57 +0000 Subject: [PATCH] chore(release): keep feat commits on the patch train pre-1.0 Adds bump-patch-for-minor-pre-major so feat commits bump the patch version instead of the minor version while the project is pre-1.0. Breaking changes still bump minor via the existing bump-minor-pre-major setting. Do not merge until the open 0.98.0 release PR has shipped: this config is read fresh on every release-please run, so landing it on main first would cause that PR to recompute down to a patch bump. --- release-please-config.json | 1 + 1 file changed, 1 insertion(+) diff --git a/release-please-config.json b/release-please-config.json index 7b015d25..b79aec39 100644 --- a/release-please-config.json +++ b/release-please-config.json @@ -5,6 +5,7 @@ ".": { "release-type": "node", "bump-minor-pre-major": true, + "bump-patch-for-minor-pre-major": true, "changelog-path": "CHANGELOG.md", "changelog-sections": [ { "type": "feat", "section": "Added" },