From dc9f458937b58267fc6278bc2ce09274cc84e8e2 Mon Sep 17 00:00:00 2001 From: Casey Rodarmor Date: Tue, 25 Oct 2022 14:42:11 -0700 Subject: [PATCH] Prepend commit messages with `- ` in changelog (#1379) --- justfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/justfile b/justfile index 0e481f1..a1d9bef 100755 --- a/justfile +++ b/justfile @@ -56,8 +56,8 @@ view-man: man man man/just.1 # add git log messages to changelog -changes: - git log --pretty=format:%s >> CHANGELOG.md +update-changelog: + git log --pretty='format:- %s' >> CHANGELOG.md check: fmt clippy test forbid #!/usr/bin/env bash