File tree Expand file tree Collapse file tree 3 files changed +15
-7
lines changed Expand file tree Collapse file tree 3 files changed +15
-7
lines changed Original file line number Diff line number Diff line change @@ -13,14 +13,14 @@ project adheres to [Semantic Versioning](http://semver.org/).
13
13
{{ .Title }}:
14
14
{{ range .Commits -}}
15
15
{{- if .Subject -}}
16
- - {{ if .Scope }}** {{ .Scope }}:** {{ end }}{{ .Subject }}
16
+ - {{ if .Scope }}** {{ .Scope }}:** {{ end }}{{ .Subject | upperFirst }}
17
17
{{ end -}}
18
18
{{ end }}
19
19
{{ end -}}
20
20
{{ else }}
21
21
{{ range .Unreleased.Commits -}}
22
22
{{- if .Subject -}}
23
- - {{ if .Scope }}** {{ .Scope }}:** {{ end }}{{ .Subject }}
23
+ - {{ if .Scope }}** {{ .Scope }}:** {{ end }}{{ .Subject | upperFirst }}
24
24
{{ end -}}
25
25
{{ end }}
26
26
{{ end -}}
@@ -43,14 +43,14 @@ project adheres to [Semantic Versioning](http://semver.org/).
43
43
{{ .Title }}:
44
44
{{ range .Commits -}}
45
45
{{- if .Subject -}}
46
- - {{ if .Scope }}** {{ .Scope }}:** {{ end }}{{ .Subject }}
46
+ - {{ if .Scope }}** {{ .Scope }}:** {{ end }}{{ .Subject | upperFirst }}
47
47
{{ end -}}
48
48
{{ end }}
49
49
{{ end -}}
50
50
{{ else }}
51
51
{{ range .Commits -}}
52
52
{{- if .Subject -}}
53
- - {{ if .Scope }}** {{ .Scope }}:** {{ end }}{{ .Subject }}
53
+ - {{ if .Scope }}** {{ .Scope }}:** {{ end }}{{ .Subject | upperFirst }}
54
54
{{ end -}}
55
55
{{ end }}
56
56
{{ end -}}
Original file line number Diff line number Diff line change @@ -18,7 +18,15 @@ options:
18
18
19
19
commit_groups :
20
20
group_by : Type
21
- sort_by : Type
21
+ sort_by : Custom
22
+ title_order :
23
+ - feat
24
+ - improvement
25
+ - refactor
26
+ - fix
27
+ - docs
28
+ - test
29
+ - ci
22
30
title_maps :
23
31
feat : FEATURES
24
32
fix : BUG FIXES
Original file line number Diff line number Diff line change @@ -8,10 +8,10 @@ TAG_QUERY=v11.0.0..
8
8
scope ?= "minor"
9
9
10
10
changelog-unrelease :
11
- git-chglog -o $(CHANGELOG_FILE ) $(TAG_QUERY )
11
+ git-chglog --no-case - o $(CHANGELOG_FILE ) $(TAG_QUERY )
12
12
13
13
changelog :
14
- git-chglog -o $(CHANGELOG_FILE ) --next-tag ` $( SEMTAG) final -s $( scope) -o -f` $(TAG_QUERY )
14
+ git-chglog --no-case - o $(CHANGELOG_FILE ) --next-tag ` $( SEMTAG) final -s $( scope) -o -f` $(TAG_QUERY )
15
15
16
16
release :
17
17
$(SEMTAG ) final -s $(scope )
You can’t perform that action at this time.
0 commit comments