Skip to content

Commit

Permalink
Added possibility to use notes without issue
Browse files Browse the repository at this point in the history
  • Loading branch information
JrooTJunior committed Aug 1, 2021
1 parent 9114abe commit f4ca858
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
3 changes: 2 additions & 1 deletion CHANGES/.template.rst.jinja2
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,8 @@
{% if definitions[category]['showcontent'] %}
{% for text, values in sections[section][category].items() %}
- {{ text }}
{{ values|join(', ') }}
{% for value in values %}{% if value.isdigit() %} `#{{ value }} <https://github.com/aiogram/aiogram/issues/{{ value }}>`_
{% endif %}{% endfor %}
{% endfor %}

{% else %}
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -137,7 +137,7 @@ package = "aiogram"
filename = "CHANGES.rst"
directory = "CHANGES/"
template = "CHANGES/.template.rst.jinja2"
issue_format = "`#{issue} <https://github.com/aiogram/aiogram/issues/{issue}>`_"
issue_format = "{issue}"

[build-system]
requires = ["poetry-core>=1.0.0"]
Expand Down

0 comments on commit f4ca858

Please sign in to comment.