diff mbox series

[yocto-autobuilder-helper] scripts/release-parser: Update release generator for 5.1

Message ID 20240713201638.390039-2-mhalstead@linuxfoundation.org
State New
Headers show
Series [yocto-autobuilder-helper] scripts/release-parser: Update release generator for 5.1 | expand

Commit Message

Michael Halstead July 13, 2024, 8:16 p.m. UTC
Comment out future stable branch for easy updating.

Signed-off-by: Michael Halstead <mhalstead@linuxfoundation.org>
---
 scripts/release-parser.py | 10 ++++++----
 1 file changed, 6 insertions(+), 4 deletions(-)
diff mbox series

Patch

diff --git a/scripts/release-parser.py b/scripts/release-parser.py
index 7ae3c0b..0463667 100755
--- a/scripts/release-parser.py
+++ b/scripts/release-parser.py
@@ -84,8 +84,10 @@  def get_git_tags():
             status = "LTS until Apr. 2024"
         if branch == "yocto-4.0":
             status = "LTS until Apr. 2026"
-        if branch == "yocto-4.3":
-            status = "Stable Release"
+        if branch == "yocto-5.0":
+            status = "LTS until Apr. 2028"
+#        if branch == "yocto-5.1":
+#            status = "Stable Release"
 
         # Create a dictionary for the tag
         tag_dict = {
@@ -108,10 +110,10 @@  tags = sorted(get_git_tags(), key=lambda x: x["original_release_date"], reverse=
 
 tags.append(
     {
-        "series_version": "5.0",
+        "series_version": "5.1",
         "original_release_date": "",
         "latest_release_date": "",
-        "release_codename": "Scarthgap",
+        "release_codename": "Styhead",
         "latest_tag": "",
         "status": "Active Development",
         "download": "",