Skip to content

Latest commit

 

History

History
17 lines (12 loc) · 710 Bytes

release_notes.md

File metadata and controls

17 lines (12 loc) · 710 Bytes

{% import "macros/path.html" as macros %}

{% set base_path = macros::release_path(version=version, path="/release-notes/") %} {% set release_notes_data = load_data(path=macros::path_join(path_a=base_path, path_b="/_release-notes.toml")) %} {% for release_note in release_notes_data.release_notes %} {% set release_note_body = load_data(path=macros::path_join(path_a=base_path, path_b=release_note.file_name)) %}

{{ release_note.title }}

  • Authors: {{ release_note.authors | join(sep=", ")}}
  • Pull Request

{{ release_note_body | replace(from='POST_PATH', to=page.colocated_path) | markdown }}

{% endfor %}