docs: Update changelog generation to use custom sort with git-chglog v0.10.0 (#1202)

This commit is contained in:
Thierno IB. BARRY
2021-01-29 00:30:05 +01:00
committed by GitHub
parent 84a3761742
commit a8c402bb0e
3 changed files with 15 additions and 7 deletions

View File

@@ -8,10 +8,10 @@ TAG_QUERY=v11.0.0..
scope ?= "minor"
changelog-unrelease:
git-chglog -o $(CHANGELOG_FILE) $(TAG_QUERY)
git-chglog --no-case -o $(CHANGELOG_FILE) $(TAG_QUERY)
changelog:
git-chglog -o $(CHANGELOG_FILE) --next-tag `$(SEMTAG) final -s $(scope) -o -f` $(TAG_QUERY)
git-chglog --no-case -o $(CHANGELOG_FILE) --next-tag `$(SEMTAG) final -s $(scope) -o -f` $(TAG_QUERY)
release:
$(SEMTAG) final -s $(scope)