From ae28880fc8bd953fd39cf22a9a0edae7ec70f020 Mon Sep 17 00:00:00 2001 From: Anna Stuchlik Date: Tue, 30 Jul 2024 10:22:52 +0200 Subject: [PATCH] doc: enable publishing docs for branch-6.1 This commit enables publishing documentation from branch-6.1. The docs will be published as UNSTABLE (the warning about version 6.1 being unstable will be displayed). Fixes https://github.com/scylladb/scylladb/issues/19926 No backport is required. Closes scylladb/scylladb#19931 --- docs/conf.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/conf.py b/docs/conf.py index 0085389d2d..ab72218de8 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -16,11 +16,11 @@ sys.path.insert(0, os.path.abspath("..")) BASE_URL = 'https://opensource.docs.scylladb.com' # Build documentation for the following tags and branches. TAGS = [] -BRANCHES = ["master", "branch-5.1", "branch-5.2", "branch-5.4", "branch-6.0"] +BRANCHES = ["master", "branch-5.1", "branch-5.2", "branch-5.4", "branch-6.0", "branch-6.1"] # Set the latest version. LATEST_VERSION = "branch-6.0" # Set which versions are not released yet. -UNSTABLE_VERSIONS = ["master"] +UNSTABLE_VERSIONS = ["master", "branch-6.1"] # Set which versions are deprecated. DEPRECATED_VERSIONS = [""]