From 8cf85056b746a1a969bb643687fe62de238da123 Mon Sep 17 00:00:00 2001 From: Matthew Fisher Date: Tue, 25 Sep 2018 10:36:15 -0700 Subject: [PATCH] docs(release_checklist): fix changelog generation command Signed-off-by: Matthew Fisher --- docs/release_checklist.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/release_checklist.md b/docs/release_checklist.md index a84cad713..f45eebb03 100644 --- a/docs/release_checklist.md +++ b/docs/release_checklist.md @@ -257,7 +257,7 @@ The changelog at the bottom of the release notes can be generated with this comm ```shell PREVIOUS_RELEASE=vX.Y.Z -git log --no-merges --pretty=format:'- %s %H (%aN)' $RELEASE_NAME $PREVIOUS_RELEASE +git log --no-merges --pretty=format:'- %s %H (%aN)' $PREVIOUS_RELEASE..$RELEASE_NAME ``` Once finished, go into GitHub and edit the release notes for the tagged release with the notes written here.