mirror of
https://github.com/pezkuwichain/pezkuwi-subxt.git
synced 2026-04-26 18:07:58 +00:00
ff906127ab
This PR adds description to each of the sections of the Changelog part. Changes are based on feedback that it wasn't that clear what exactly `Node Dev`, `Runtime Dev` etc. means. Now, the description for each of those parts is taken directly from the `prdoc` schema. Closes https://github.com/paritytech/release-engineering/issues/197
14 lines
319 B
Plaintext
14 lines
319 B
Plaintext
### Changelog for `{{ env.TARGET_AUDIENCE }}`
|
|
|
|
{{ env.AUDIENCE_DESC }}
|
|
|
|
{% for file in prdoc -%}
|
|
{% for doc_item in file.content.doc %}
|
|
{%- if doc_item.audience == env.TARGET_AUDIENCE %}
|
|
#### [#{{file.doc_filename.number}}]: {{ file.content.title }}
|
|
{{ doc_item.description }}
|
|
{% endif -%}
|
|
|
|
{%- endfor %}
|
|
{%- endfor %}
|