Replies: 1 comment
-
Hello! 👋🏼 You can customize the changelog format to generate a .rst file. For example: [changelog]
body = """
Release Notes
=============
{% for group, commits in commits | group_by(attribute="group") %}
{{ group }}
{% for commit in commits %}
- {{ commit.message | capitalize }}
{% endfor %}
{% endfor %}
""" Check out documentation and examples for more information. |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
i started using the lib on some of my projects, it's really useful thanks a lot for the work, now i've been thinking since i have all my project using rst with sphinx doc building, could it be a way to have support on restructuredtext template to generate .rst changelog file ? is it something you think of ?
Beta Was this translation helpful? Give feedback.
All reactions