We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8b83e2f commit 1700e54Copy full SHA for 1700e54
packages/common-library/src/common_library/changelog.py
@@ -129,10 +129,11 @@ def create_route_description(
129
parts.append(base)
130
131
if changelog:
132
- changelog_strings = [f"> {entry.to_string()}" for entry in changelog]
+ # NOTE: Adds a markdown section as : | New in version 0.6.0
133
+ changelog_strings = [f"> {entry.to_string()}\n" for entry in changelog]
134
parts.append("\n".join(changelog_strings))
135
- return "\n\n".join(parts)
136
+ return "\n".join(parts)
137
138
139
def validate_changelog(changelog: Sequence[ChangelogEntryAbstract]) -> None:
0 commit comments