aboutsummaryrefslogtreecommitdiff
path: root/changelog.d
diff options
context:
space:
mode:
authorPaul Ganssle <paul@ganssle.io>2018-03-24 10:39:13 -0400
committerPaul Ganssle <paul@ganssle.io>2018-03-24 12:47:47 -0400
commitbf1a79f0d6f3187cf81f80b155f564dd2143f6e5 (patch)
treefd49d9fb18cb5f47ea94c606496404d8dc39124c /changelog.d
parent3b51c98ef6103ae91cc95d884c18b02766571d91 (diff)
downloaddateutil-bf1a79f0d6f3187cf81f80b155f564dd2143f6e5.tar.gz
Add towncrier configuration
Diffstat (limited to 'changelog.d')
-rw-r--r--changelog.d/.gitignore0
-rw-r--r--changelog.d/template.rst33
2 files changed, 33 insertions, 0 deletions
diff --git a/changelog.d/.gitignore b/changelog.d/.gitignore
new file mode 100644
index 0000000..e69de29
--- /dev/null
+++ b/changelog.d/.gitignore
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 %}