.chglog/CHANGELOG.tpl.md aktualisiert

This commit is contained in:
2025-05-29 15:19:43 +02:00
parent c7649ed925
commit 1a9618da67

View File

@ -6,9 +6,7 @@
### {{ .Title }}
{{ range .Commits -}}
{{ $hash := .Hash }}
{{ $short := printf "%.7s" $hash }}
* {{ if .Scope }}**{{ .Scope }}:** {{ end }}{{ .Subject }} ({{ $short }})
* {{ if .Scope }}**{{ .Scope }}:** {{ end }}{{ .Subject }} ({{ slice .Hash.String 0 7 }})
{{ end }}
{{ end }}
@ -16,9 +14,7 @@
### Reverts
{{ range .RevertCommits -}}
{{ $hash := .Hash }}
{{ $short := printf "%.7s" $hash }}
* {{ .Revert.Header }} ({{ $short }})
* {{ .Revert.Header }} ({{ slice .Hash.String 0 7 }})
{{ end }}
{{ end }}
@ -26,9 +22,7 @@
### Pull Requests
{{ range .MergeCommits -}}
{{ $hash := .Hash }}
{{ $short := printf "%.7s" $hash }}
* {{ .Header }} ({{ $short }})
* {{ .Header }} ({{ slice .Hash.String 0 7 }})
{{ end }}
{{ end }}