From 15b4b98b00f3619ef6245b3848a7bce5b588e3a0 Mon Sep 17 00:00:00 2001 From: Minsu Lee Date: Thu, 23 Jul 2026 23:35:36 +0900 Subject: [PATCH] ci: keep release-please pre-1.0 (bump-minor-pre-major) Without this flag release-please bumps 0.x to 1.0.0 on the first `feat`, which just proposed 1.0.0 for the Phase 1 scaffold. `bump-minor-pre-major` makes features bump the minor while the major is 0, so the first release is 0.1.0 and breaking changes stay in 0.x until we intentionally cut 1.0.0. --- release-please-config.json | 1 + 1 file changed, 1 insertion(+) diff --git a/release-please-config.json b/release-please-config.json index a267337..f7c2e12 100644 --- a/release-please-config.json +++ b/release-please-config.json @@ -4,6 +4,7 @@ ".": { "release-type": "simple", "changelog-path": "CHANGELOG.md", + "bump-minor-pre-major": true, "extra-files": [ { "type": "json", "path": "deno.json", "jsonpath": "$.version" } ]