From 1cd62f8c3803e54d57be5555d6cd0a625c489353 Mon Sep 17 00:00:00 2001 From: Bruno Oliveira Date: Sat, 7 Jul 2018 11:02:33 -0300 Subject: [PATCH] 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 --- changelog/_template.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/changelog/_template.rst b/changelog/_template.rst index a898abc15..5de4ae97e 100644 --- a/changelog/_template.rst +++ b/changelog/_template.rst @@ -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 }} `_{% endfor %}){% endif %} +- {% for value in values|sort %}{{ issue_joiner() }}`{{ value }} `_{% endfor %}: {{ text }} {% endfor %}