Skip to content

Commit

Permalink
Fix vertical spacing in changelog generation
Browse files Browse the repository at this point in the history
  • Loading branch information
emilk committed Jun 27, 2024
1 parent a489374 commit 97b6d8c
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions scripts/generate_changelog.py
Original file line number Diff line number Diff line change
Expand Up @@ -191,8 +191,8 @@ def changelog_filepath(crate: str) -> str:

def add_to_changelog_file(crate: str, content: str, version: str) -> None:
insert_text = f"\n## {version} - {date.today()}\n"
insert_text += content
insert_text += "\n"
insert_text += content.strip()
insert_text += "\n\n"

file_path = changelog_filepath(crate)

Expand Down

0 comments on commit 97b6d8c

Please sign in to comment.