summaryrefslogtreecommitdiff
path: root/tools/NEWS.template.jinja
blob: afb5c11e0db130aa2225c993895918cfdb517d00 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
{% for section, _ in sections|dictsort(by='key') %}
{% set underline = "-" %}
{% if section %}
----- {{section}}

{% endif %}
{% if sections[section] %}
{% for category, val in definitions|dictsort if category in sections[section]%}

### {{ definitions[category]['name'] }}

{% for text, values in sections[section][category]|dictsort(by='value') %}
- {{ text }}
{% endfor %}

{% if sections[section][category]|length == 0 %}

No significant changes.


{% else %}
{% endif %}
{% endfor %}
{% else %}

No significant changes.


{% endif %}
{% endfor %}