Make it so that the release tag includes the entire release notes (#359)

Add `--cleanup=whitespace` to keep lines starting with # in the `git
tag` command for releases.

- [x] Changelog updated / no changelog update needed
This commit is contained in:
Gwilym Kuiper 2022-12-09 21:13:04 +00:00 committed by GitHub
commit cc8824fc21
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -72,6 +72,7 @@ pub fn release(matches: &clap::ArgMatches) -> Result<(), Error> {
"tag",
"-a",
&format!("v{version}"),
"--cleanup=whitespace",
"-m",
&format!("#v{version}\n{changelog_text}"),
],