Files
fastapi-cache/changelog.d/changelog_template.jinja
Martijn Pieters 42cb99d4eb 📣 Start managing the changelog with towncrier
This PR includes a workflow that validates that future PRs include
a changelog entry (unless the `skip-changelog` label is present on the
PR, or the PR is a dependabot PR).

Use 'poetry run towncrier create` to create entries for the changelog.
2023-05-17 17:31:03 +01:00

16 lines
314 B
Django/Jinja

{% if sections[""] -%}
{% for category, val in definitions.items() if category in sections[""] -%}
### {{ definitions[category]['name'] }}
{% for text, values in sections[""][category].items() %}
- {{ text }} {{ values|join(', ') }}
{% endfor %}
{% endfor -%}
{% else -%}
No significant changes.
{% endif -%}