We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 8dbd0c7 commit 968f860Copy full SHA for 968f860
scripts/release_notes.py
@@ -42,6 +42,7 @@ def get_change_log_notes() -> str:
42
elif line.startswith("### Removed"):
43
line = REMOVED_HEADER + "\n"
44
current_section_notes.append(line)
45
+ # print(current_section_notes)
46
assert current_section_notes
47
return "## What's new\n\n" + "".join(current_section_notes).strip() + "\n"
48
@@ -76,8 +77,8 @@ def get_commit_history() -> str:
76
77
78
79
def main():
- print(get_change_log_notes())
80
print(get_commit_history())
81
+ print(get_change_log_notes())
82
83
84
if __name__ == "__main__":
0 commit comments