From 8a9aa6291a4f82458c0ce1f52482d44f2a8827e4 Mon Sep 17 00:00:00 2001 From: dcs3spp Date: Mon, 12 Aug 2024 16:44:55 +0100 Subject: [PATCH] [DX-1565] Update python script for v5.5.0 and add hyphen requested for LTS version (#5147) * update python script for v5.5.0 and add hyphen requested for LTS version * update LTS formatting for code review --------- Co-authored-by: Simon Pears --- scripts/page_available_since.py | 17 +++++++++++------ 1 file changed, 11 insertions(+), 6 deletions(-) diff --git a/scripts/page_available_since.py b/scripts/page_available_since.py index 03af06e37e..5fce38b2d3 100644 --- a/scripts/page_available_since.py +++ b/scripts/page_available_since.py @@ -4,12 +4,17 @@ versions = [ { "path": "/docs/", - "name": "5.4 - Latest", - "branch": "release-5.4" + "name": "5.5 - Latest", + "branch": "release-5.5" }, + { + "path": "/docs/5.4", + "name": "5.4", + "branch": "release-5.4" + }, { "path": "/docs/5.3/", - "name": "5.3 LTS", + "name": "5.3 - LTS", "branch": "release-5.3" }, { @@ -25,7 +30,7 @@ }, { "path": "/docs/5.0/", - "name": "5 LTS", + "name": "5 - LTS", "branch": "release-5" }, { @@ -45,7 +50,7 @@ }, { "path": "/docs/4.0/", - "name": "4 LTS", + "name": "4 - LTS", "branch": "release-4" }, { @@ -60,7 +65,7 @@ }, { "path": "/docs/3-lts/", - "name": "3 LTS", + "name": "3 - LTS", "branch": "release-3-lts" },