##// END OF EJS Templates
chore(version): bumped version to 5.12.0
chore(version): bumped version to 5.12.0

File last commit:

r379:e42d1049
r485:2678d964 master
Show More
template.rst.jinja2
32 lines | 743 B | text/plain | TextLexer
{{ changelog.title | underline('=') }}
{% for section in changelog.sections %}
{{ (section.version.name + ' (' + section.version.date.date().isoformat() + ')') | underline('+')}}
{% if section.header %}
{{ section.header }}
{% endif %}
{% if section.breaking_changes %}
⚠ BREAKING CHANGES
^^^^^^^^^^^^^^^^^^
{% for line in section.breaking_changes %}
{% for change in line.breaking_changes %}
- {{ change }}
{% endfor %}
{% endfor %}
{% endif %}
{% for commit_type, changes in section.changes.items() %}
{{ commit_type | underline('^') }}
{% for line in changes %}
* {% if line.scope %}**{{ line.scope }}:** {% endif %}{{ line.summary }}
{% endfor %}
{% endfor %}
{% if section.footer %}
{{ section.footer }}
{% endif %}
{% endfor %}