Skip to content

Commit 1fb0215

Browse files
authored
update version switcher for Ansible 11 (#2159)
1 parent 1042eca commit 1fb0215

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

docs/docsite/rst/conf.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -240,15 +240,15 @@
240240
'latest_version': (
241241
'devel' if tags.has('all') else
242242
'2.18' if tags.has('core_lang') or tags.has('core') else
243-
'10' if tags.has('ansible')
243+
'11' if tags.has('ansible')
244244
else '<UNKNOWN>'
245245
),
246246
# list specifically out of order to make latest work
247247
'available_versions': (
248248
('devel',) if tags.has('all') else
249249
('2.15_ja', '2.14_ja', '2.13_ja',) if tags.has('core_lang') else
250250
('2.18', '2.17', '2.16', 'devel',) if tags.has('core') else
251-
('latest', '9', '2.9', 'devel') if tags.has('ansible')
251+
('latest', '2.9', 'devel') if tags.has('ansible')
252252
else '<UNKNOWN>'
253253
),
254254
}

0 commit comments

Comments
 (0)