Skip to content

Commit 968f860

Browse files
committed
Bump version to v0.8.0 for release
1 parent 8dbd0c7 commit 968f860

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

scripts/release_notes.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,6 +42,7 @@ def get_change_log_notes() -> str:
4242
elif line.startswith("### Removed"):
4343
line = REMOVED_HEADER + "\n"
4444
current_section_notes.append(line)
45+
# print(current_section_notes)
4546
assert current_section_notes
4647
return "## What's new\n\n" + "".join(current_section_notes).strip() + "\n"
4748

@@ -76,8 +77,8 @@ def get_commit_history() -> str:
7677

7778

7879
def main():
79-
print(get_change_log_notes())
8080
print(get_commit_history())
81+
print(get_change_log_notes())
8182

8283

8384
if __name__ == "__main__":

0 commit comments

Comments
 (0)