diff --git a/AUTHORS b/AUTHORS index d58cd3d2d..5259d0322 100644 --- a/AUTHORS +++ b/AUTHORS @@ -120,6 +120,7 @@ Michael Birtwell Michael Droettboom Michael Seifert Michal Wajszczuk +Mihai Capotă Mike Lundy Ned Batchelder Neven Mundar diff --git a/changelog/2620.trivial b/changelog/2620.trivial new file mode 100644 index 000000000..51c0bd160 --- /dev/null +++ b/changelog/2620.trivial @@ -0,0 +1 @@ +Show multiple issue links in CHANGELOG entries. diff --git a/changelog/_template.rst b/changelog/_template.rst index 66c850ffd..a898abc15 100644 --- a/changelog/_template.rst +++ b/changelog/_template.rst @@ -13,7 +13,8 @@ {% if definitions[category]['showcontent'] %} {% for text, values in sections[section][category]|dictsort(by='value') %} -- {{ text }}{% if category != 'vendor' %} (`{{ values[0] }} `_){% endif %} +{% set issue_joiner = joiner(', ') %} +- {{ text }}{% if category != 'vendor' %} ({% for value in values|sort %}{{ issue_joiner() }}`{{ value }} `_{% endfor %}){% endif %} {% endfor %}