From 5cf23a7b94593fec3c44b718620e41a0690542d2 Mon Sep 17 00:00:00 2001 From: Yu-Ting Hsiung Date: Tue, 15 Sep 2026 00:46:27 +0800 Subject: [PATCH] ci: remove redundant incremental changelog setting The bump command already forces incremental changelog generation when update_changelog_on_bump is enabled. Setting changelog_incremental globally also affects the separate release-note command, where the positional version is a rev_range and conflicts with incremental mode. Keep update_changelog_on_bump enabled so automated bumps continue preserving changelog history, while allowing the existing exact-version dry-run to generate GitHub release notes. Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com> --- pyproject.toml | 1 - 1 file changed, 1 deletion(-) diff --git a/pyproject.toml b/pyproject.toml index df95e070a..31f2da905 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -147,7 +147,6 @@ version_provider = "uv" version_scheme = "pep440" annotated_tag = true update_changelog_on_bump = true -changelog_incremental = true [tool.uv.build-backend] module-name = "commitizen"