Skip to content

Commit

Permalink
fix: Update release notes generator script to account for markdown fo…
Browse files Browse the repository at this point in the history
…rmatting changes (#203)
  • Loading branch information
nfelt14 authored May 3, 2024
1 parent fb22432 commit 6512446
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion scripts/check_unreleased_changelog_items.py
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ def main() -> None:
tracking_unreleased = False
tracking_entries = False
for line in changelog_file:
if line.startswith("___"):
if line.startswith(("___", "---")):
tracking_unreleased = False
tracking_entries = False
if tracking_unreleased:
Expand Down

0 comments on commit 6512446

Please sign in to comment.