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 cfc374b commit e2c3f6bCopy full SHA for e2c3f6b
make_release/notes/generate.nu
@@ -112,7 +112,8 @@ export def generate-notes [version: string]: table -> string {
112
const template_path = path self "template.md"
113
let template = open $template_path
114
let arguments = {
115
- version: $version,
+ # chop off the `v` in the version
116
+ version: ($version | str substring 1..),
117
changes: ($prs | generate-changes-section),
118
hall_of_fame: ($prs | generate-hall-of-fame)
119
changelog: (generate-full-changelog $version)
0 commit comments