mirror of
https://github.com/zen-browser/www.git
synced 2025-07-07 17:05:32 +02:00
feat: initialize twilight release notes structure in twilight-to-stable script
This commit is contained in:
parent
e441001e13
commit
bf1d514141
2 changed files with 8 additions and 2 deletions
|
@ -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.")
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue