mirror of
https://github.com/restic/rest-server.git
synced 2025-12-07 09:36:13 -08:00
33 lines
883 B
Cheetah
33 lines
883 B
Cheetah
{{- range $changes := . }}{{ with $changes -}}
|
|
Changelog for rest-server {{ .Version }} ({{ .Date }})
|
|
============================================
|
|
|
|
The following sections list the changes in rest-server {{ .Version }} relevant
|
|
to 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 $id := .Issues }}
|
|
https://github.com/restic/rest-server/issues/{{ $id -}}
|
|
{{ end -}}
|
|
{{ range $id := .PRs }}
|
|
https://github.com/restic/rest-server/pull/{{ $id -}}
|
|
{{ end -}}
|
|
{{ range $url := .OtherURLs }}
|
|
{{ $url -}}
|
|
{{ end }}
|
|
{{ end }}{{ end }}
|
|
|
|
{{ end }}{{ end -}}
|