Skip to content

Commit

Permalink
Fix stray ] in changelog for PR numbers
Browse files Browse the repository at this point in the history
Signed-off-by: Bernát Gábor <bgabor8@bloomberg.net>
  • Loading branch information
gaborbernat committed Oct 17, 2024
1 parent 9488e0c commit 0f7af98
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions pyproject-fmt/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
## 2.4.3 - 2024-10-17

- Fix tomli not present for Python<3.11 by [@gaborbernat](https://github.com/gaborbernat) in
[#$9](https://github.com/tox-dev/toml-fmt/pull/9)]
[#$9](https://github.com/tox-dev/toml-fmt/pull/9)

<a id="2.4.2"></a>

Expand All @@ -16,7 +16,7 @@
## 2.4.1 - 2024-10-17

- Fix release script by [@gaborbernat](https://github.com/gaborbernat) in
[#$8](https://github.com/tox-dev/toml-fmt/pull/8)]
[#$8](https://github.com/tox-dev/toml-fmt/pull/8)

<a id="2.4.0"></a>

Expand Down
2 changes: 1 addition & 1 deletion tasks/changelog.py
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ def run() -> None:
at = "tox-dev/toml-fmt"
gh_repo = github.get_repo(at)
for title, pr, by in entries(gh_repo, git_repo, options.pr, options.base):
suffix = f" in [#${pr}](https://github.com/{at}/pull/{pr})]" if pr else ""
suffix = f" in [#${pr}](https://github.com/{at}/pull/{pr})" if pr else ""
logs.append(f"{title} by [@{by}](https://github.com/{by}){suffix}")

if logs:
Expand Down

0 comments on commit 0f7af98

Please # to comment.