File tree Expand file tree Collapse file tree 3 files changed +548
-0
lines changed
Expand file tree Collapse file tree 3 files changed +548
-0
lines changed Original file line number Diff line number Diff line change 1+ # {{ .Info.Title }}
2+
3+ {{ if .Versions -}}
4+ {{ if .Unreleased.CommitGroups -}}
5+ <a name =" unreleased " ></a >
6+ ## Unreleased
7+
8+ {{ range .Unreleased.CommitGroups -}}
9+ ### {{ .Title }}
10+ {{ range .Commits -}}
11+ - [ ` {{ .Hash.Short }} ` ] ({{ $.Info.RepositoryURL }}/commit/{{ .Hash.Long }}) {{ if .Scope }}** {{ .Scope }}:** {{ end }}{{ .Subject }}
12+ {{ if .Body }}
13+ {{ .Body | replace "\n" "\n\t" }}
14+ {{ end -}}
15+ {{ end }}
16+ {{ end -}}
17+ {{ end -}}
18+ {{ end -}}
19+
20+ {{ range .Versions }}
21+ <a name =" {{ .Tag.Name }} " ></a >
22+ ## {{ if .Tag.Previous }}[ {{ .Tag.Name }}] ({{ $.Info.RepositoryURL }}/compare/{{ .Tag.Previous.Name }}...{{ .Tag.Name }}){{ else }}{{ .Tag.Name }}{{ end }}
23+
24+ > Released on {{ datetime "January 02, 2006" .Tag.Date }}
25+
26+ {{ range .CommitGroups -}}
27+ ### {{ .Title }}
28+ {{ range .Commits -}}
29+ - [ ` {{ .Hash.Short }} ` ] ({{ $.Info.RepositoryURL }}/commit/{{ .Hash.Long }}) {{ if .Scope }}** {{ .Scope }}:** {{ end }}{{ .Subject }}
30+ {{ if .Body }}
31+ {{ .Body | replace "\n" "\n\t" }}
32+ {{ end -}}
33+ {{ end }}
34+ {{ end -}}
35+
36+ {{- if .RevertCommits -}}
37+ ### βͺ Reverts
38+
39+ {{ range .RevertCommits -}}
40+ - [ ` {{ .Hash.Short }} ` ] ({{ $.Info.RepositoryURL }}/commit/{{ .Hash.Long }}) {{ .Revert.Header }}
41+ {{ if .Body }}
42+ {{ .Body | replace "\n" "\n\t" }}
43+ {{ end -}}
44+ {{ end }}
45+ {{ end -}}
46+
47+ {{- if .MergeCommits -}}
48+ ### π Pull Requests
49+
50+ {{ range .MergeCommits -}}
51+ - [ ` {{ .Hash.Short }} ` ] ({{ $.Info.RepositoryURL }}/commit/{{ .Hash.Long }}) {{ .Header }}
52+ {{ if .Body }}
53+ {{ .Body | replace "\n" "\n\t" }}
54+ {{ end -}}
55+ {{ end }}
56+ {{ end -}}
57+
58+ {{- if .NoteGroups -}}
59+ {{ range .NoteGroups -}}
60+ ### {{ .Title }}
61+
62+ {{ range .Notes }}
63+ {{ .Body }}
64+ {{ end }}
65+ {{ end -}}
66+ {{ end -}}
67+ {{ end -}}
Original file line number Diff line number Diff line change 1+ style : github
2+ template : CHANGELOG.tpl.md
3+ info :
4+ title : CHANGELOG
5+ repository_url : https://github.com/maicol07/flarum_sso_php_plugin
6+ options :
7+ # commits:
8+ # filters:
9+ # Type:
10+ # - feat
11+ # - fix
12+ # - perf
13+ # - refactor
14+ commit_groups :
15+ sort_by : Custom
16+ title_order :
17+ - feat
18+ - update
19+ - perf
20+ - fix
21+ - refactor
22+ - style
23+ - build
24+ - chore
25+ title_maps :
26+ feat : β¨ Features
27+ fix : π Bug Fixes
28+ fixed : π Bug Fixes
29+ perf : β‘ Performance Improvements
30+ refactor : β» Code Refactoring
31+ revert : βͺ Reverted
32+ update : π Updates
33+ build : π· Building scripts changes
34+ chore : Other changes
35+ style : π¨ Code styling
36+ docs : π Documentation changes
37+ header :
38+ pattern : " ^(\\ w*)(?:\\ (([\\ w\\ $\\ .\\ -\\ *\\ s]*)\\ ))?\\ :\\ s(.*)$"
39+ pattern_maps :
40+ - Type
41+ - Scope
42+ - Subject
43+ notes :
44+ keywords :
45+ - BREAKING CHANGE
You canβt perform that action at this time.
0 commit comments