Skip to content

Commit 1700e54

Browse files
committed
@sanderegg review:newlines
1 parent 8b83e2f commit 1700e54

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

packages/common-library/src/common_library/changelog.py

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -129,10 +129,11 @@ def create_route_description(
129129
parts.append(base)
130130

131131
if changelog:
132-
changelog_strings = [f"> {entry.to_string()}" for entry in changelog]
132+
# NOTE: Adds a markdown section as : | New in version 0.6.0
133+
changelog_strings = [f"> {entry.to_string()}\n" for entry in changelog]
133134
parts.append("\n".join(changelog_strings))
134135

135-
return "\n\n".join(parts)
136+
return "\n".join(parts)
136137

137138

138139
def validate_changelog(changelog: Sequence[ChangelogEntryAbstract]) -> None:

0 commit comments

Comments
 (0)