mirror of
https://github.com/octoleo/restic.git
synced 2024-11-01 03:12:31 +00:00
6ec5dc8016
The `wrap` function has been renamed to `wrapIndent`
33 lines
797 B
Cheetah
33 lines
797 B
Cheetah
{{- range $changes := . }}{{ with $changes -}}
|
|
Changelog for restic {{ .Version }} ({{ .Date }})
|
|
=======================================
|
|
|
|
The following sections list the changes in restic {{ .Version }} relevant to
|
|
restic users. The changes are ordered by importance.
|
|
|
|
Summary
|
|
-------
|
|
{{ range $entry := .Entries }}{{ with $entry }}
|
|
* {{ .TypeShort }} #{{ .PrimaryID }}: {{ .Title }}
|
|
{{- end }}{{ end }}
|
|
|
|
Details
|
|
-------
|
|
{{ range $entry := .Entries }}{{ with $entry }}
|
|
* {{ .Type }} #{{ .PrimaryID }}: {{ .Title }}
|
|
{{ range $par := .Paragraphs }}
|
|
{{ wrapIndent $par 80 3 }}
|
|
{{ end -}}
|
|
{{ range $url := .IssueURLs }}
|
|
{{ $url -}}
|
|
{{ end -}}
|
|
{{ range $url := .PRURLs }}
|
|
{{ $url -}}
|
|
{{ end -}}
|
|
{{ range $url := .OtherURLs }}
|
|
{{ $url -}}
|
|
{{ end }}
|
|
{{ end }}{{ end }}
|
|
|
|
{{ end }}{{ end -}}
|