github.com/mckael/restic@v0.8.3/changelog/changelog-github.tmpl (about)

     1  {{- range $changes := . }}{{ with $changes -}}
     2  Changelog for restic {{ .Version }} ({{ .Date }})
     3  =======================================
     4  
     5  The following sections list the changes in restic {{ .Version }} relevant to
     6  restic users. The changes are ordered by importance.
     7  
     8  Summary
     9  -------
    10  {{ range $entry := .Entries }}{{ with $entry }}
    11   * {{ .TypeShort }} [#{{ .PrimaryID }}]({{ .PrimaryURL }}): {{ .Title }}
    12  {{- end }}{{ end }}
    13  
    14  Details
    15  -------
    16  {{ range $entry := .Entries }}{{ with $entry }}
    17   * {{ .Type }} #{{ .PrimaryID }}: {{ .Title }}
    18  {{ range $par := .Paragraphs }}
    19     {{ $par }}
    20  {{ end }}
    21     {{ range $id := .Issues -}}
    22  {{ ` ` }}[#{{ $id }}](https://github.com/restic/restic/issues/{{ $id -}})
    23  {{- end -}}
    24  {{ range $id := .PRs -}}
    25  {{ ` ` }}[#{{ $id }}](https://github.com/restic/restic/pull/{{ $id -}})
    26  {{- end -}}
    27  {{ ` ` }}{{ range $url := .OtherURLs -}}
    28  {{ $url -}}
    29  {{- end }}
    30  {{ end }}{{ end }}
    31  
    32  {{ end }}{{ end -}}