{{/* This template is used to render the set of changes in the changelog page. It expects to find a directory "changelogs" containing a subdirectory for each of the 5 APIs in the specification. Inside each of these directories it expects to find newsfragments describing changes to that API. If the `version.status` setting in config.toml is anything other than "unstable", then it also expects to find a "release.yaml" file in /changelogs, which contains: - `tag`: Git tag for this release - `date`: date of this release It then renders this info a table, before the list of changes. */}} {{ $path := path.Join "changelogs" }} {{ $status := .Site.Params.version.status }} {{ if ne $status "unstable" }} {{ $release_info := readFile (path.Join $path "release.yaml") | transform.Unmarshal }}
Git commit | https://github.com/matrix-org/matrix-doc/tree/{{ $release_info.tag }} |
---|---|
Release date | {{ $release_info.date }} |