From 11e270a9c8acf6677ac637e49702d6462072f419 Mon Sep 17 00:00:00 2001 From: "patchback[bot]" <45432694+patchback[bot]@users.noreply.github.com> Date: Mon, 4 Nov 2024 15:20:53 -0500 Subject: [PATCH] update version switcher for 2.18 (#2090) (#2098) (cherry picked from commit 4eea5394e9fc8ae44a6a974e6f01136e3879f23d) Co-authored-by: Sandra McCann --- docs/docsite/rst/conf.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/docsite/rst/conf.py b/docs/docsite/rst/conf.py index 9fcd2a5e207..2fc5ae519ee 100644 --- a/docs/docsite/rst/conf.py +++ b/docs/docsite/rst/conf.py @@ -240,7 +240,7 @@ 'current_version': version, 'latest_version': ( 'devel' if tags.has('all') else - '2.17' if tags.has('core_lang') or tags.has('core') else + '2.18' if tags.has('core_lang') or tags.has('core') else '10' if tags.has('ansible') else '' ), @@ -248,7 +248,7 @@ 'available_versions': ( ('devel',) if tags.has('all') else ('2.15_ja', '2.14_ja', '2.13_ja',) if tags.has('core_lang') else - ('2.17', '2.16', '2.15', 'devel',) if tags.has('core') else + ('2.18', '2.17', '2.16', 'devel',) if tags.has('core') else ('latest', '9', '2.9', 'devel') if tags.has('ansible') else '' ),