From bf1a79f0d6f3187cf81f80b155f564dd2143f6e5 Mon Sep 17 00:00:00 2001 From: Paul Ganssle Date: Sat, 24 Mar 2018 10:39:13 -0400 Subject: Add towncrier configuration --- changelog.d/.gitignore | 0 changelog.d/template.rst | 33 +++++++++++++++++++++++++++++++++ 2 files changed, 33 insertions(+) create mode 100644 changelog.d/.gitignore create mode 100644 changelog.d/template.rst (limited to 'changelog.d') diff --git a/changelog.d/.gitignore b/changelog.d/.gitignore new file mode 100644 index 0000000..e69de29 diff --git a/changelog.d/template.rst b/changelog.d/template.rst new file mode 100644 index 0000000..8adffdf --- /dev/null +++ b/changelog.d/template.rst @@ -0,0 +1,33 @@ +{% for section, _ in sections.items() %} +{% set underline = underlines[0] %}{% if section %}{{section}} +{{ underline * section|length }}{% set underline = underlines[1] %} + +{% endif %} + +{% if sections[section] %} +{% for category, val in definitions.items() if category in sections[section]%} +{{ definitions[category]['name'] }} +{{ underline * definitions[category]['name']|length }} + +{% if definitions[category]['showcontent'] %} +{% for text, values in sections[section][category].items() %} +- {{ text }} +{% endfor %} + +{% else %} +- {{ sections[section][category]['']|join(', ') }} + +{% endif %} +{% if sections[section][category]|length == 0 %} +No significant changes. + +{% else %} +{% endif %} + +{% endfor %} +{% else %} +No significant changes. + + +{% endif %} +{% endfor %} -- cgit v1.2.3