From bf1d5141411e68904f0bd46fc70a5ca09776601f Mon Sep 17 00:00:00 2001 From: "mr. M" Date: Wed, 1 Jan 2025 17:33:10 +0100 Subject: [PATCH] feat: initialize twilight release notes structure in twilight-to-stable script --- scripts/twilight-to-stable.py | 8 +++++++- src/release-notes/twilight.json | 2 +- 2 files changed, 8 insertions(+), 2 deletions(-) diff --git a/scripts/twilight-to-stable.py b/scripts/twilight-to-stable.py index 5a25349..6834eeb 100644 --- a/scripts/twilight-to-stable.py +++ b/scripts/twilight-to-stable.py @@ -27,7 +27,13 @@ def main(): json.dump(stable, f, indent=2) 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.") diff --git a/src/release-notes/twilight.json b/src/release-notes/twilight.json index be63a56..2736c38 100644 --- a/src/release-notes/twilight.json +++ b/src/release-notes/twilight.json @@ -1,5 +1,5 @@ { - "version": "1.0.2-b.5", + "version": "1.0.2-b.6", "date": "26/12/2024", "image": false, "workflowId": 12481117227,