We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2032cfb commit 1c81584Copy full SHA for 1c81584
Makefile
@@ -1,7 +1,12 @@
1
.PHONY: changelog release
2
3
+scope ?= "minor"
4
+
5
+changelog-unrelease:
6
+ git-chglog --no-case -o CHANGELOG.md
7
8
changelog:
- git-chglog -o CHANGELOG.md --next-tag `semtag final -s minor -o`
9
+ git-chglog --no-case -o CHANGELOG.md --next-tag `semtag final -s $(scope) -o -f`
10
11
release:
- semtag final -s minor
12
+ semtag final -s $(scope)
0 commit comments