Update CHANGELOG template to put issue links at the start of entries

This allows us to use the new multi-line entries available with
towncrier 18.6.0
This commit is contained in:
Bruno Oliveira 2018-07-07 11:02:33 -03:00
parent a522fc745a
commit 1cd62f8c38
1 changed files with 1 additions and 1 deletions

View File

@ -14,7 +14,7 @@
{% if definitions[category]['showcontent'] %}
{% for text, values in sections[section][category]|dictsort(by='value') %}
{% set issue_joiner = joiner(', ') %}
- {{ text }}{% if category != 'vendor' %} ({% for value in values|sort %}{{ issue_joiner() }}`{{ value }} <https://github.com/pytest-dev/pytest/issues/{{ value[1:] }}>`_{% endfor %}){% endif %}
- {% for value in values|sort %}{{ issue_joiner() }}`{{ value }} <https://github.com/pytest-dev/pytest/issues/{{ value[1:] }}>`_{% endfor %}: {{ text }}
{% endfor %}