From 64991ab518cb42fb5ede47a1502a200b9769ade6 Mon Sep 17 00:00:00 2001 From: Zanie Blue Date: Tue, 12 Mar 2024 00:39:16 -0500 Subject: [PATCH] Do not bump the minor version on breaking changes --- pyproject.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pyproject.toml b/pyproject.toml index cdb0a48adb7e8..0a32a0625b644 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -45,7 +45,7 @@ include = ["rust-toolchain.toml"] [tool.rooster] major_labels = [] # We do not use the major version number -minor_labels = ["breaking"] # Bump the minor version on breaking changes +minor_labels = [] # Normally we'd bump the minor version on breaking changes, but we're waiting changelog_ignore_labels = ["internal", "ci", "testing"] changelog_sections.breaking = "Breaking changes" changelog_sections.enhancement = "Enhancements"