From fc4c2be3aae3e5cee1572b23bab84351941f6bc5 Mon Sep 17 00:00:00 2001 From: Zanie Blue Date: Mon, 10 Jun 2024 12:40:47 -0400 Subject: [PATCH] Exclude preview items from changelog (#4202) These were not excluded explicitly, so they were landing in "Other changes" or the relevant other section if multiple labels were applied. --- pyproject.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pyproject.toml b/pyproject.toml index f28bffa7f620..631d31663306 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -46,7 +46,7 @@ include = [{ path = "rust-toolchain.toml", format = ["sdist", "wheel"] }, { path [tool.rooster] major_labels = [] # We do not use the major version number yet minor_labels = ["breaking"] -changelog_ignore_labels = ["internal", "ci", "testing"] +changelog_ignore_labels = ["internal", "ci", "testing", "preview"] changelog_sections.breaking = "Breaking changes" changelog_sections.enhancement = "Enhancements" changelog_sections.compatibility = "Enhancements"