diff --git a/indexer/src/models.py b/indexer/src/models.py index d3a27ec..608ee6b 100644 --- a/indexer/src/models.py +++ b/indexer/src/models.py @@ -113,7 +113,7 @@ def get_dev_version(self) -> Version: .replace("_", "\_") ) msg = msg[:50] + ("..." if len(msg) > 50 else "") - changelog += f"- [`{commit.sha[:8]}`]({commit.html_url}): {msg} - [__{commit.author.login}__](https://github.com/{commit.author.login})\n" + changelog += f"[`{commit.sha[:8]}`]({commit.html_url}): {msg} - [__{commit.author.login}__](https://github.com/{commit.author.login})\n" return Version( version=last_commit.sha[:8], changelog=changelog,