mirror of
https://github.com/apricote/releaser-pleaser.git
synced 2026-01-13 13:21:00 +00:00
The forge ui usually shows the release name right above the description, so this removes an unecessary duplicate bit of information. In addition this also cleans up the changelog interface a bit and moves functionality where it belongs. Prepares a bit for custom changelogs in the future. Closes #32
24 lines
497 B
Smarty
24 lines
497 B
Smarty
{{define "entry" -}}
|
|
- {{ 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 }}
|
|
### Features
|
|
|
|
{{ range . -}}{{template "entry" .}}{{end}}
|
|
{{- end -}}
|
|
{{- with .Data.Commits.fix }}
|
|
### Bug Fixes
|
|
|
|
{{ range . -}}{{template "entry" .}}{{end}}
|
|
{{- end -}}
|
|
|
|
{{- if .Data.Suffix }}
|
|
{{ .Data.Suffix }}
|
|
{{ end }}
|