From 7f6f27be002ba26908ddb299bd0af8becf800c48 Mon Sep 17 00:00:00 2001 From: "David B. Kinder" Date: Thu, 16 Dec 2021 09:42:51 -0800 Subject: [PATCH] doc: add v2.7 docs to version menu Also cleaned out older versions from list, keeping v1.0, v1.6.1, v2.0, v2.5, and v2.6. The documentation for previous releases is still available (by editing the URL to mention that release (e.g., /2.1/ ). Signed-off-by: David B. Kinder --- doc/conf.py | 8 +------- 1 file changed, 1 insertion(+), 7 deletions(-) diff --git a/doc/conf.py b/doc/conf.py index 97cc4d122..20b86e8b7 100644 --- a/doc/conf.py +++ b/doc/conf.py @@ -192,17 +192,11 @@ html_context = { 'docs_title': docs_title, 'is_release': is_release, 'versions': ( ("latest", "/latest/"), + ("2.7", "/2.7/"), ("2.6", "/2.6/"), ("2.5", "/2.5/"), - ("2.4", "/2.4/"), - ("2.3", "/2.3/"), - ("2.2", "/2.2/"), - ("2.1", "/2.1/"), ("2.0", "/2.0/"), ("1.6.1", "/1.6.1/"), - ("1.6", "/1.6/"), - ("1.5", "/1.5/"), - ("1.4", "/1.4/"), ("1.0", "/1.0/"), # keep 1.0 ) }