From 5d70993142dccefe6900ed4dcf96bce831d3f3e2 Mon Sep 17 00:00:00 2001 From: Elod Illes Date: Tue, 24 Sep 2024 15:46:02 +0200 Subject: [PATCH] [www] Set 2024.2 Dalmatian as released Update 2024.2 Dalmatian 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 2nd. Change-Id: I4297f50f854219312500f4c42bbbf405e5eb723d --- 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 d67fb704cc..b86a2a0783 100755 --- a/tools/www-generator.py +++ b/tools/www-generator.py @@ -76,7 +76,7 @@ SERIES_INFO = collections.OrderedDict([ ('2023.1', SeriesInfo(date='March 2023', status='maintained')), ('2023.2', SeriesInfo(date='October 2023', status='maintained')), ('2024.1', SeriesInfo(date='April 2024', status='maintained')), - ('2024.2', SeriesInfo(date='October 2024', status='development')), + ('2024.2', SeriesInfo(date='October 2024', status='maintained')), ('2025.1', SeriesInfo(date='April 2025', status='development')), ])