aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorThéo Zimmermann2020-06-05 17:09:33 +0200
committerThéo Zimmermann2020-06-05 17:09:33 +0200
commit2b337fa8eb06fd1b3c1b8d783a88d59289dd56c9 (patch)
tree5bd43b699901fa78f241856e5c84e9089b3f2332
parent4f4ad5678db3e7aaf42f14d6d2d9000550c5f826 (diff)
Adjust list of versions in version switcher.
- Use the name 'dev' instead of 'master' because it is less cryptic. - Add the 'v8.12' branch. - Use the branch version only for active branches, and the latest patch-level release for the rest.
-rwxr-xr-xdoc/sphinx/conf.py9
1 files changed, 5 insertions, 4 deletions
diff --git a/doc/sphinx/conf.py b/doc/sphinx/conf.py
index fabf7a519f..8be0b5a332 100755
--- a/doc/sphinx/conf.py
+++ b/doc/sphinx/conf.py
@@ -214,11 +214,12 @@ html_context = {
'conf_py_path': '/doc/sphinx/',
# Versions and downloads listed in the versions menu (see _templates/versions.html)
'versions': [
- ("master", "https://coq.github.io/doc/master/refman/"),
+ ("dev", "https://coq.github.io/doc/master/refman/"),
("stable", "https://coq.inria.fr/distrib/current/refman/"),
- ("v8.11", "https://coq.github.io/doc/v8.11/refman/"),
- ("v8.10", "https://coq.github.io/doc/v8.10/refman/"),
- ("v8.9", "https://coq.github.io/doc/v8.9/refman/"),
+ ("v8.12", "https://coq.github.io/doc/v8.12/refman/"),
+ ("8.11", "https://coq.inria.fr/distrib/V8.11.2/refman/"),
+ ("8.10", "https://coq.inria.fr/distrib/V8.10.2/refman/"),
+ ("8.9", "https://coq.inria.fr/distrib/V8.9.1/refman/"),
("8.8", "https://coq.inria.fr/distrib/V8.8.2/refman/"),
("8.7", "https://coq.inria.fr/distrib/V8.7.2/refman/"),
("8.6", "https://coq.inria.fr/distrib/V8.6.1/refman/"),