-
-
Notifications
You must be signed in to change notification settings - Fork 6
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Automatically generated by python-semantic-release
- Loading branch information
github-actions
committed
Sep 29, 2023
1 parent
21973b8
commit a189096
Showing
2 changed files
with
25 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,25 @@ | ||
# CHANGELOG | ||
{% if context.history.unreleased | length > 0 %} | ||
|
||
{# UNRELEASED #} | ||
## Unreleased | ||
{% for type_, commits in context.history.unreleased | dictsort %} | ||
### {{ type_ | capitalize }} | ||
{% 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() %} | ||
## {{ version.as_tag() }} ({{ release.tagged_date.strftime("%Y-%m-%d") }}) | ||
{% for type_, commits in release["elements"] | dictsort %} | ||
### {{ type_ | capitalize }} | ||
{% 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 %} |
Binary file not shown.