Skip to content

Commit 95ccfe6

Browse files
Fix name of Whats New file (#127)
1 parent 97f9790 commit 95ccfe6

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

run_release.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -960,7 +960,7 @@ def maybe_prepare_new_main_branch(db: DbfilenameShelf) -> None:
960960

961961
prev_branch = f"{release_tag.major}.{release_tag.minor}"
962962
new_branch = f"{release_tag.major}.{int(release_tag.minor)+1}"
963-
whatsnew_file = f"Doc/whatsnew/{new_branch}"
963+
whatsnew_file = f"Doc/whatsnew/{new_branch}.rst"
964964
with cd(db["git_repo"]), open(whatsnew_file, "w") as f:
965965
f.write(WHATS_NEW_TEMPLATE.format(version=new_branch, prev_version=prev_branch))
966966

0 commit comments

Comments
 (0)