Skip to content

Commit 8eaba79

Browse files
committed
Testing publisher - hardcode date in release script
1 parent 9facdca commit 8eaba79

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

scripts/changelog/util.py

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,11 @@ def load_release_changes(fn):
3131
def load_unreleased_changes(d):
3232
if not os.path.exists(d):
3333
return None
34-
return ReleaseChanges(None, date.today().isoformat(), load_unreleased_entries(d))
34+
return ReleaseChanges(
35+
None,
36+
# date.today().isoformat(), TODO uncomment and remove hardcoded date
37+
"2025-11-12",
38+
load_unreleased_entries(d))
3539

3640
def load_unreleased_entries(d):
3741
entries = []

0 commit comments

Comments
 (0)