From 97525004f5ceabe18038c8b81357ecfba26b182a Mon Sep 17 00:00:00 2001 From: Matt Sturgeon Date: Wed, 9 Sep 2026 19:54:45 +0100 Subject: [PATCH] chore(knope): list changes by severity Instead of listing "added", "changed", "fixed", etc (which Knope gleans from severity), list the actual semver severity. --- knope.toml | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/knope.toml b/knope.toml index dda58d66..b2d1a770 100644 --- a/knope.toml +++ b/knope.toml @@ -25,6 +25,12 @@ change_templates = [ "### $summary\n\n$details", "- **$summary**", ] +extra_changelog_sections = [ + { types = ["major"], name = "Major changes" }, + { types = ["minor"], name = "Minor changes" }, + { types = ["patch"], name = "Patch changes" }, + { types = ["note"], footers = ["Changelog-Note"], name = "Notes" } +] [[workflows]]