From 23de5398001aff713a3317f55cc1318c72b0bc6e Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Sun, 8 Feb 2026 07:58:02 +0000 Subject: [PATCH] fix: update semantic-release changelog configuration for v10 compatibility - Move changelog_file to changelog.default_templates section - Resolves deprecation warning in semantic-release v10 Co-authored-by: christianlouis <361235+christianlouis@users.noreply.github.com> --- pyproject.toml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/pyproject.toml b/pyproject.toml index 5e93fd81..e239b270 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -51,13 +51,15 @@ prerelease = false [tool.semantic_release.changelog] template_dir = "templates" -changelog_file = "CHANGELOG.md" exclude_commit_patterns = [ "^chore\\(release\\):", "^Merge", "^Bump version", ] +[tool.semantic_release.changelog.default_templates] +changelog_file = "CHANGELOG.md" + [tool.semantic_release.changelog.environment] block_start_string = "{%" block_end_string = "%}"