forked from cytomining/pycytominer
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request cytomining#356 from kenibrewer/docs/changelog-temp…
…late docs(changelog): add commitizen template
- Loading branch information
Showing
3 changed files
with
30 additions
and
4 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
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,23 @@ | ||
{# Adapted from https://github.com/commitizen-tools/commitizen/blob/1d842b5d823a452109070f8af8857249e95f7713/commitizen/templates/CHANGELOG.md.j2 #} | ||
{% for entry in tree %} | ||
|
||
## {{ entry.version }}{% if entry.date %} ({{ entry.date }}){% endif %} | ||
|
||
{# Add link to the detailed GitHub release notes #} | ||
[Detailed Release Notes](https://github.com/cytomining/pycytominer/releases/tag/{{ entry.version }}) | ||
|
||
{% for change_key, changes in entry.changes.items() %} | ||
|
||
{% if change_key %} | ||
### {{ change_key }} | ||
{% endif %} | ||
|
||
{% for change in changes %} | ||
{% if change.scope %} | ||
- **{{ change.scope }}**: {{ change.message }} | ||
{% elif change.message %} | ||
- {{ change.message }} | ||
{% endif %} | ||
{% endfor %} | ||
{% endfor %} | ||
{% endfor %} |
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