From 28dc5c6b822baa14bc6a2ea3c8121e9f14a6e59a Mon Sep 17 00:00:00 2001 From: Brad Chamberlain Date: Fri, 6 Dec 2024 19:39:13 -0800 Subject: [PATCH] Update docs pulldown menu to mark 'docs/main' as 2.4 (pre-release) This is the standard update at this point in the release cycle. --- Signed-off-by: Brad Chamberlain --- doc/rst/conf.py | 6 +++--- doc/util/versionButton.php | 2 +- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/doc/rst/conf.py b/doc/rst/conf.py index 04b2cad97dcc..a679d021f83d 100644 --- a/doc/rst/conf.py +++ b/doc/rst/conf.py @@ -128,13 +128,13 @@ def setup(app): # 'version' adds a redundant version number onto the top of the sidebar # automatically (rtd-theme). We also don't use |version| anywhere in rst -chplversion = '2.3' # TODO -- parse from `chpl --version` +chplversion = '2.4' # TODO -- parse from `chpl --version` shortversion = chplversion.replace('-', '‑') # prevent line-break at hyphen, if any html_context = {"chplversion":chplversion} # The full version, including alpha/beta/rc tags. -# release = '2.3.0 (pre-release)' -release = '2.3.0' +release = '2.4.0 (pre-release)' +# release = '2.3.0' # General information about the project. project = u'Chapel Documentation' diff --git a/doc/util/versionButton.php b/doc/util/versionButton.php index 4b123a8b3752..4f7af049ebf9 100755 --- a/doc/util/versionButton.php +++ b/doc/util/versionButton.php @@ -89,7 +89,7 @@ function toggleDropDown() { function dropSetup() { var currentRelease = "2.2"; // what does the public have? var stagedRelease = "2.3"; // is there a release staged but not yet public? - var nextRelease = "2.3"; // what's the next release? (on docs/main) + var nextRelease = "2.4"; // what's the next release? (on docs/main) var button = document.getElementById("versionButton"); // Uses unicode down-pointing triangle var arrow = " ▼";