From 381b1ee66234a125d823afc4690be153bc0a9d56 Mon Sep 17 00:00:00 2001 From: Simon Michael Date: Wed, 17 Apr 2024 10:09:13 -1000 Subject: [PATCH] ;just: rename relauthors --- Justfile | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/Justfile b/Justfile index 0100b6392..864044459 100644 --- a/Justfile +++ b/Justfile @@ -1035,6 +1035,11 @@ relprep VER: @reldate: awk '/^#+ +[0-9]+\.[0-9].*([0-9]{4}-[0-9]{2}-[0-9]{2})/{print $3;exit}' hledger/CHANGES.md +# show commit author names since last release +@relauthors: + echo "Commit authors since last release:" + git shortlog -sn `git tag --sort=-creatordate -l '[0-9]*' | head -1`.. + # Show last release date and version (of hledger package). @rel: just rels | head -1 @@ -1179,11 +1184,6 @@ _gitSwitchAutoCreate BRANCH: @describe: git describe --tags --match 'hledger-[0-9]*' --dirty -# show commit author names since last release -@authors-release: - echo "Commit authors since last release:" - git shortlog -sn `git tag --sort=-creatordate -l '[0-9]*' | head -1`.. - # show all commit author names @authors: echo "Commit authors ($(git shortlog -sn | wc -l | awk '{print $1}'))":