Robert Kaussow
6a5e3142bf
Some checks reported errors
continuous-integration/drone/push Build encountered an error
28 lines
641 B
Markdown
Executable File
28 lines
641 B
Markdown
Executable File
# Changelog
|
|
|
|
{{ range .Versions -}}
|
|
## {{ if .Tag.Previous }}[{{ .Tag.Name }}]({{ $.Info.RepositoryURL }}/compare/{{ .Tag.Previous.Name }}...{{ .Tag.Name }}){{ else }}{{ .Tag.Name }}{{ end }} ({{ datetime "2006-01-02" .Tag.Date }})
|
|
|
|
{{ range .CommitGroups -}}
|
|
### {{ .Title }}
|
|
|
|
{{ $subjects := list }}
|
|
{{ range .Commits -}}
|
|
{{ if not (has .Subject $subjects) -}}
|
|
- {{ if .Scope }}**{{ .Scope }}:** {{ end }}{{ .Subject }}
|
|
{{ $subjects = append $subjects .Subject -}}
|
|
{{ end }}
|
|
{{- end }}
|
|
{{- end -}}
|
|
|
|
{{- if .NoteGroups -}}
|
|
{{ range .NoteGroups -}}
|
|
### {{ .Title }}
|
|
|
|
{{ range .Notes }}
|
|
{{ .Body }}
|
|
{{ end }}
|
|
{{ end -}}
|
|
{{ end -}}
|
|
{{ end -}}
|