We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 23b58ba commit 9e08f61Copy full SHA for 9e08f61
make_release/notes/generate.nu
@@ -8,6 +8,7 @@ const SECTIONS = [
8
["notes:other", "Other changes", "Additional changes"]
9
["notes:fixes", "Bug fixes", "Other fixes"]
10
["notes:mention", null, null]
11
+ ["notes:hide", null, null]
12
]
13
14
use notice.nu *
@@ -129,7 +130,7 @@ export def generate-changes-section []: table -> string {
129
130
# sort sections in order of appearance in table
131
| sort-by {|i| $SECTIONS | enumerate | where item.label == $i.section | only }
132
# Hall of Fame is handled separately
- | where section != "notes:mention"
133
+ | where section not-in ["notes:mention" "notes:hide"]
134
| each { generate-section }
135
| str join (char nl)
136
}
0 commit comments