From 60c66eda484826d599eda17b15073cf610688cf2 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Aleix=20Conchillo=20Flaqu=C3=A9?= Date: Mon, 27 Apr 2026 14:50:01 -0700 Subject: [PATCH] chore(towncrier): indent (PR ref line by two spaces in template So the rendered changelog has the (PR [...]) line aligned as a list continuation under its bullet. Verified with both short and wrapped entries via `towncrier build --draft`. --- changelog/_template.md.j2 | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/changelog/_template.md.j2 b/changelog/_template.md.j2 index ac3729ba9..a4ac5d718 100644 --- a/changelog/_template.md.j2 +++ b/changelog/_template.md.j2 @@ -5,7 +5,7 @@ {% for text, values in sections[section][category].items() %} {{ text }} -(PR {{ values|join(', ') }}) + (PR {{ values|join(', ') }}) {% endfor %} {% endfor %}