restic/changelog/changelog-github.tmpl

32 lines
924 B
Cheetah
Raw Normal View History

2017-12-25 21:26:56 +00:00
{{- 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.
2017-12-25 21:26:56 +00:00
Summary
-------
{{ range $entry := .Entries }}{{ with $entry }}
2017-12-27 18:30:04 +00:00
* {{ .TypeShort }} [#{{ .PrimaryID }}]({{ .PrimaryURL }}): {{ .Title }}
2017-12-25 21:26:56 +00:00
{{- end }}{{ end }}
Details
-------
{{ range $entry := .Entries }}{{ with $entry }}
* {{ .Type }} #{{ .PrimaryID }}: {{ .Title }}
{{ range $par := .Paragraphs }}
{{ $par }}
{{ end }}
{{ range $id := .Issues -}}
2017-12-27 22:26:19 +00:00
{{ ` ` }}[#{{ $id }}](https://github.com/restic/restic/issues/{{ $id -}})
2017-12-25 21:26:56 +00:00
{{- end -}}
{{ range $id := .PRs -}}
2017-12-27 18:30:04 +00:00
{{ ` ` }}[#{{ $id }}](https://github.com/restic/restic/pull/{{ $id -}})
2017-12-25 21:26:56 +00:00
{{- end -}}
{{ ` ` }}{{ range $url := .OtherURLs -}}
{{ $url -}}
{{- end }}
{{ end }}{{ end }}
{{ end }}{{ end -}}