From d71ce66dce5305ff7dd01e6799a1317dcb445b5a Mon Sep 17 00:00:00 2001 From: Elod Illes Date: Fri, 3 May 2024 12:39:22 +0200 Subject: [PATCH] [www] Set Zed state to Unmaintained Zed series reached it's end of maintained state with the planned date of May 2nd, 2024. As most of the projects are ready with the transition [1], this patch sets Zed as unmaintained. Note that stable/zed branches are replaced with unmaintained/zed branches and they are still open for bug fix backports, but NOT supported or maintained by the project teams themselves (for details about the Unmaintained state, see: [2][3]). [1] https://review.opendev.org/q/topic:zed-unmaintained [2] https://governance.openstack.org/tc/resolutions/20230724-unmaintained-branches.html [3] https://docs.openstack.org/project-team-guide/stable-branches.html Change-Id: I6d39374e746e2089c29a0efc628884e24e44adcf --- tools/www-generator.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tools/www-generator.py b/tools/www-generator.py index ab085fc5ae..e5f597ffa6 100755 --- a/tools/www-generator.py +++ b/tools/www-generator.py @@ -72,7 +72,7 @@ SERIES_INFO = collections.OrderedDict([ ('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')), + ('zed', SeriesInfo(date='October 2022', status='unmaintained')), ('2023.1', SeriesInfo(date='March 2023', status='maintained')), ('2023.2', SeriesInfo(date='October 2023', status='maintained')), ('2024.1', SeriesInfo(date='April 2024', status='maintained')),