From 8ba061c44dbc139acae44dc16181fa1a067494ef Mon Sep 17 00:00:00 2001 From: Elod Illes Date: Mon, 25 Sep 2023 15:37:21 +0200 Subject: [PATCH] [www] Set 2023.2 Bobcat as released Update 2023.2 Bobcat series info in www-generator.py so that it is marked as 'maintained', thus released. This patch needs to be merged at release day, October 4th. Change-Id: I851bd18afeaa3c5ec3029e3b9af1f14e637b88c6 --- 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 e1819ca2eb..c7cd098963 100755 --- a/tools/www-generator.py +++ b/tools/www-generator.py @@ -75,7 +75,7 @@ SERIES_INFO = collections.OrderedDict([ ('yoga', SeriesInfo(date='April 2022', status='maintained')), ('zed', SeriesInfo(date='October 2022', status='maintained')), ('2023.1', SeriesInfo(date='March 2023', status='maintained')), - ('2023.2', SeriesInfo(date='October 2023', status='development')), + ('2023.2', SeriesInfo(date='October 2023', status='maintained')), ('2024.1', SeriesInfo(date='April 2024', status='development')), ])