{% if context.history.unreleased | length > 0 %}
{# UNRELEASED #}
{% for type_, commits in context.history.unreleased | dictsort %}
{% for commit in commits %}{% if type_ != "unknown" %}
- {{ commit.commit.message.rstrip() }} ([
{{ commit.commit.hexsha[:7] }}
]({{ commit.commit.hexsha | commit_hash_url }})) {% else %} - {{ commit.commit.message.rstrip() }} ([
{{ commit.commit.hexsha[:7] }}
]({{ commit.commit.hexsha | commit_hash_url }})) {% endif %}{% endfor %}{% endfor %}
{% endif %}
{# RELEASED #} {% for version, release in context.history.released.items() %}
{% for type_, commits in release["elements"] | dictsort %}
{% for commit in commits %}{% if type_ != "unknown" %}
- {{ commit.commit.message.rstrip() }} ([
{{ commit.commit.hexsha[:7] }}
]({{ commit.commit.hexsha | commit_hash_url }})) {% else %} - {{ commit.commit.message.rstrip() }} ([
{{ commit.commit.hexsha[:7] }}
]({{ commit.commit.hexsha | commit_hash_url }})) {% endif %}{% endfor %}{% endfor %}{% endfor %}