Add release mapping alias for 2025.2

When we create major release mappings, we should not forget to
include the alias mapping so users don't have to look it up
separately.

Change-Id: If1970f0d63be220c45bec272187502954ced2adf
Signed-off-by: Julia Kreger <juliaashleykreger@gmail.com>
This commit is contained in:
Julia Kreger 2026-01-07 10:42:16 -08:00
parent c2b5580b75
commit a0968f8413

View file

@ -989,6 +989,7 @@ RELEASE_MAPPING['2023.2'] = RELEASE_MAPPING['23.0']
RELEASE_MAPPING['2024.1'] = RELEASE_MAPPING['24.1']
RELEASE_MAPPING['2024.2'] = RELEASE_MAPPING['26.1']
RELEASE_MAPPING['2025.1'] = RELEASE_MAPPING['29.0']
RELEASE_MAPPING['2025.2'] = RELEASE_MAPPING['32.0']
# List of available versions with named versions first; 'master' is excluded.
RELEASE_VERSIONS = sorted(set(RELEASE_MAPPING) - {'master'}, reverse=True)