File tree Expand file tree Collapse file tree 3 files changed +9
-0
lines changed
Expand file tree Collapse file tree 3 files changed +9
-0
lines changed Original file line number Diff line number Diff line change 2222 {% endfor %}
2323 {% endif %}
2424
25+ {% if "performance improvements" in release ["elements" ] %}
26+ ### Performance Improvements
27+ {% for commit in release ["elements" ]["performance improvements" ] %}
28+ * {% if commit .scope %} **{{ commit.scope }}**: {% endif %} {{ commit.commit.summary[commit.commit.summary.find(":")+1:] .strip() }} ([`{{ commit.short_hash }}`]({{ commit.commit.hexsha | commit_hash_url }}))
29+ {% endfor %}
30+ {% endif %}
31+
2532{% endfor %}
Original file line number Diff line number Diff line change @@ -96,6 +96,7 @@ We ask that you use these commit types in your commit titles:
9696* ` refactor ` - When the pull request is implementing only a refactor of existing code;
9797* ` ci ` - When the pull request is implementing a change to the CI infrastructure of the packge;
9898* ` chore ` - When the pull request is a generic maintenance task.
99+ * ` perf ` - When the pull request is a performance improvement.
99100
100101We also require that the type in your conventional commit title end in an exclaimation point (e.g. ` feat! ` or ` fix! ` )
101102if the pull request should be considered to be a breaking change in some way. Please also include a "BREAKING CHANGE" footer
Original file line number Diff line number Diff line change @@ -209,6 +209,7 @@ patch_tags = [
209209 " feat" ,
210210 " fix" ,
211211 " refactor" ,
212+ " perf" ,
212213]
213214
214215[tool .semantic_release .publish ]
You can’t perform that action at this time.
0 commit comments