releaser-pleaser/internal/changelog/changelog.md.tpl

25 lines
541 B
Smarty
Raw Normal View History

{{define "entry" -}}
- {{ if .BreakingChange}}**BREAKING**: {{end}}{{ if .Scope }}**{{.Scope}}**: {{end}}{{.Description}}
{{ end }}
{{- if not .Formatting.HideVersionTitle }}
## [{{.Data.Version}}]({{.Data.VersionLink}})
{{ end -}}
{{- if .Data.Prefix }}
{{ .Data.Prefix }}
{{ end -}}
{{- with .Data.Commits.feat }}
2024-07-15 16:45:03 +02:00
### Features
{{ range . -}}{{template "entry" .}}{{end}}
2024-07-15 16:45:03 +02:00
{{- end -}}
{{- with .Data.Commits.fix }}
2024-07-15 16:45:03 +02:00
### Bug Fixes
{{ range . -}}{{template "entry" .}}{{end}}
2024-07-15 16:45:03 +02:00
{{- end -}}
{{- if .Data.Suffix }}
{{ .Data.Suffix }}
{{ end }}