feat: initialize twilight release notes structure in twilight-to-stable script

This commit is contained in:
mr. M 2025-01-01 17:33:10 +01:00
parent e441001e13
commit bf1d514141
No known key found for this signature in database
GPG key ID: CBD57A2AEDBDA1FB
2 changed files with 8 additions and 2 deletions

View file

@ -27,7 +27,13 @@ def main():
json.dump(stable, f, indent=2) json.dump(stable, f, indent=2)
with open(TWILIGHT_RELEASE_NOTES, "w") as f: with open(TWILIGHT_RELEASE_NOTES, "w") as f:
json.dump({}, f, indent=2) json.dump({
"version": "xxx",
"image": False,
"extra": "",
"fixes": [],
"features": [],
}, f, indent=2)
print("Twilight release notes merged into stable release notes.") print("Twilight release notes merged into stable release notes.")

View file

@ -1,5 +1,5 @@
{ {
"version": "1.0.2-b.5", "version": "1.0.2-b.6",
"date": "26/12/2024", "date": "26/12/2024",
"image": false, "image": false,
"workflowId": 12481117227, "workflowId": 12481117227,