;just: rename relauthors
This commit is contained in:
parent
9685897f78
commit
381b1ee662
10
Justfile
10
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}'))":
|
||||
|
||||
Loading…
Reference in New Issue
Block a user