From 582bafabb321c10fb441847bd2b02f40d120cd0d Mon Sep 17 00:00:00 2001 From: Anna Stuchlik Date: Fri, 31 May 2024 10:59:26 +0200 Subject: [PATCH] doc: set 6.0 as the latest stable version This commit updates the configuration for ScyllaDB documentation so that: 6.0 is the latest version. 6.0 is removed from the list of unstable versions. It must be merged when ScyllaDB 6.0 is released. No backport is required. Closes scylladb/scylladb#19003 --- docs/conf.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/conf.py b/docs/conf.py index 74f5aa94fb..0085389d2d 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -18,9 +18,9 @@ BASE_URL = 'https://opensource.docs.scylladb.com' TAGS = [] BRANCHES = ["master", "branch-5.1", "branch-5.2", "branch-5.4", "branch-6.0"] # Set the latest version. -LATEST_VERSION = "branch-5.4" +LATEST_VERSION = "branch-6.0" # Set which versions are not released yet. -UNSTABLE_VERSIONS = ["master", "branch-6.0"] +UNSTABLE_VERSIONS = ["master"] # Set which versions are deprecated. DEPRECATED_VERSIONS = [""]