diff mbox series

[yocto-autobuilder-helper,2/3] scripts/release-parser.py: update for Wrynose/Whinlatter

Message ID 20251219-releases-parser-updates-v1-2-6830e6a67db0@bootlin.com
State New
Headers show
Series scripts/release-parser.py: update and move from poky | expand

Commit Message

Antonin Godard Dec. 19, 2025, 10:35 a.m. UTC
Update the script to show Wrynose as the current Active Development, and
Whinlatter as the stable branch. Since will put Walnascar as EOL too.

Signed-off-by: Antonin Godard <antonin.godard@bootlin.com>
---
 scripts/release-parser.py | 10 +++++-----
 1 file changed, 5 insertions(+), 5 deletions(-)
diff mbox series

Patch

diff --git a/scripts/release-parser.py b/scripts/release-parser.py
index ef25289..61ff935 100755
--- a/scripts/release-parser.py
+++ b/scripts/release-parser.py
@@ -83,8 +83,8 @@  def get_git_tags():
             status = "LTS until Apr. 2026"
         if branch == "yocto-5.0":
             status = "LTS until Apr. 2028"
-        if branch == "yocto-5.2":
-            status = "Stable Release until Nov 2025"
+        if branch == "yocto-5.3":
+            status = "Stable Release until April 2026"
 
         # Create a dictionary for the series entry
         tag_dict = {
@@ -108,12 +108,12 @@  tags = sorted(get_git_tags(), key=lambda x: x["original_release_date"], reverse=
 
 tags.append(
     {
-        "series_version": "5.3",
+        "series_version": "6.0",
         "original_release_date": "",
         "latest_release_date": "",
-        "release_codename": "Whinlatter",
+        "release_codename": "Wrynose",
         "latest_tag": "",
-        "releases" : list(e.name for e in filter(lambda e: e.name.startswith("5.3"), repo.tags)),
+        "releases" : list(e.name for e in filter(lambda e: e.name.startswith("6.0"), repo.tags)),
         "status": "Active Development",
         "download": "",
     }