From 74497b57e19624e9ccca1726d9d01fa0b81f329b Mon Sep 17 00:00:00 2001 From: Elod Illes Date: Thu, 7 Mar 2024 15:47:51 +0100 Subject: [PATCH] [www] Set Xena, Wallaby and Victoria state as Unmaintained With the new TC resolution the community replaces Extended Maintenance with Unmaintained status [1]. As most of the projects are ready with the transition [2], this patch sets Xena, Wallaby and Victoria releases state as unmaintained on docs.openstack.org. [1] https://governance.openstack.org/tc/resolutions/20230724-unmaintained-branches.html [2] https://review.opendev.org/q/topic:vwx-unmaintained Change-Id: If72488fb73d32e0c6fd3114bef7eeca1f3f90c3d --- tools/www-generator.py | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/tools/www-generator.py b/tools/www-generator.py index 523bef6b72..1e6b4d1e6b 100755 --- a/tools/www-generator.py +++ b/tools/www-generator.py @@ -68,10 +68,9 @@ SERIES_INFO = collections.OrderedDict([ ('stein', SeriesInfo(date='April 2019', status='EOL')), ('train', SeriesInfo(date='October 2019', status='EOL')), ('ussuri', SeriesInfo(date='May 2020', status='EOL')), - ('victoria', - SeriesInfo(date='October 2020', status='extended-maintenance')), - ('wallaby', SeriesInfo(date='April 2021', status='extended-maintenance')), - ('xena', SeriesInfo(date='October 2021', status='extended-maintenance')), + ('victoria', SeriesInfo(date='October 2020', status='unmaintained')), + ('wallaby', SeriesInfo(date='April 2021', status='unmaintained')), + ('xena', SeriesInfo(date='October 2021', status='unmaintained')), ('yoga', SeriesInfo(date='April 2022', status='unmaintained')), ('zed', SeriesInfo(date='October 2022', status='maintained')), ('2023.1', SeriesInfo(date='March 2023', status='maintained')),