diff options
author | Bjørn Erik Pedersen <[email protected]> | 2022-12-19 13:13:38 +0100 |
---|---|---|
committer | GitHub <[email protected]> | 2022-12-19 13:13:38 +0100 |
commit | 3afaca75844272c309da44d1f4b3b95dc8ee2e6f (patch) | |
tree | 3d67b88cdf45118c29fc4f3af0b7c693c8e37374 /hugoreleaser.toml | |
parent | 2d217cba5108d30835a5cf10869cfbd0a70d22f7 (diff) | |
download | hugo-3afaca75844272c309da44d1f4b3b95dc8ee2e6f.tar.gz hugo-3afaca75844272c309da44d1f4b3b95dc8ee2e6f.zip |
release: Add a note section in release notes
Diffstat (limited to 'hugoreleaser.toml')
-rw-r--r-- | hugoreleaser.toml | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/hugoreleaser.toml b/hugoreleaser.toml index 294c606c9..8f32b7b82 100644 --- a/hugoreleaser.toml +++ b/hugoreleaser.toml @@ -53,7 +53,8 @@ archive_alias_replacements = { "linux-amd64.tar.gz" = "Linux-64bit.tar.gz" } # The titles will so be listed in the given order in the release note. # Any match with ignore=true title will be dropped. { regexp = "Merge commit|Squashed|releaser:", ignore = true }, - { title = "Bug fixes", regexp = "fix", ordinal = 10 }, + { title = "Note", regexp = "(note|deprecated)", ordinal = 10 }, + { title = "Bug fixes", regexp = "fix", ordinal = 15 }, { title = "Dependency Updates", regexp = "deps", ordinal = 30 }, { title = "Build Setup", regexp = "(snap|release|update to)", ordinal = 40 }, { title = "Documentation", regexp = "(doc|readme)", ordinal = 40 }, |