From 28bf4937096857c8dbe1850887aeb01a2f5e2b5e Mon Sep 17 00:00:00 2001 From: Zanie Blue Date: Tue, 12 Mar 2024 09:17:26 -0500 Subject: [PATCH] Do not bump the minor version on breaking changes (#2376) ... yet. I think we're not quite ready for a versioning policy over here. Now that we have a "labeled" breaking change in #2362 we need to decide if it should be a minor or patch version. --- pyproject.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pyproject.toml b/pyproject.toml index cdb0a48ad..0a32a0625 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"