restic/changelog/CHANGELOG.tmpl

35 lines
906 B
Cheetah
Raw Permalink Normal View History

# Table of Contents
{{ range . -}}
* [Changelog for {{ .Version }}](#changelog-for-restic-{{ .Version | replace "." ""}}-{{ .Date | lower -}})
{{ end -}}
2023-12-24 10:44:20 +00:00
{{- range $changes := . }}{{ with $changes }}
2017-12-25 21:26:56 +00:00
# Changelog for restic {{ .Version }} ({{ .Date }})
2017-12-25 21:26:56 +00:00
The following sections list the changes in restic {{ .Version }} relevant to
restic users. The changes are ordered by importance.
## Summary
2017-12-25 21:26:56 +00:00
{{ range $entry := .Entries }}{{ with $entry }}
* {{ .TypeShort }} #{{ .PrimaryID }}: {{ .Title }}
{{- end }}{{ end }}
## Details
2017-12-25 21:26:56 +00:00
{{ range $entry := .Entries }}{{ with $entry }}
* {{ .Type }} #{{ .PrimaryID }}: {{ .Title }}
{{ range $par := .Paragraphs }}
{{ wrapIndent $par 80 3 }}
2017-12-25 21:26:56 +00:00
{{ end -}}
2018-03-24 16:31:21 +00:00
{{ range $url := .IssueURLs }}
{{ $url -}}
2017-12-25 21:26:56 +00:00
{{ end -}}
2018-03-24 16:31:21 +00:00
{{ range $url := .PRURLs }}
{{ $url -}}
2017-12-25 21:26:56 +00:00
{{ end -}}
{{ range $url := .OtherURLs }}
{{ $url -}}
{{ end }}
2023-12-24 10:44:20 +00:00
{{ end }}{{ end -}}
2017-12-25 21:26:56 +00:00
{{ end }}{{ end -}}