summaryrefslogtreecommitdiff
path: root/doc
diff options
context:
space:
mode:
authorRutherther <rutherther@ditigal.xyz>2026-01-18 12:46:51 +0100
committerRutherther <rutherther@ditigal.xyz>2026-01-18 17:54:21 +0100
commit077aaa1138cb071881ddb715f6f0969a3d0b36a8 (patch)
tree05fd1f0d5987e65c651b80dd4307b2ece4133141 /doc
parent2ae3c69679d3619c06ec37bdc458cf522515c11e (diff)
doc: Bump version to 1.5.0.
* doc/build.scm (%latest-guix-version): Bump to 1.5.0. (stylized-html): Move to versioned manual URL. (html-manual): Use versioned manual URL. Change-Id: I82048a9548894e335e7c2427a739733304a7961a Fixes: #5681 Signed-off-by: Rutherther <rutherther@ditigal.xyz> Merges: #5715
Diffstat (limited to 'doc')
-rw-r--r--doc/build.scm8
1 files changed, 5 insertions, 3 deletions
diff --git a/doc/build.scm b/doc/build.scm
index ae17a08a3c3..028dd24a615 100644
--- a/doc/build.scm
+++ b/doc/build.scm
@@ -82,7 +82,7 @@
(define %latest-guix-version
;; Latest released version.
- "1.4.0")
+ "1.5.0")
(define (texinfo-manual-images source)
"Return a directory containing all the images used by the user manual, taken
@@ -777,7 +777,8 @@ in SOURCE."
(define version-links
(list (menu-item #$latest-version
(string-append
- "/manual/" language
+ "/manual/" #$latest-version
+ "/" language
(if split-node? "/html_node" "")))
(menu-item "development"
(string-append
@@ -942,7 +943,8 @@ makeinfo OPTIONS."
(let* ((texi (language->texi-file-name language))
(opts `("--html"
"-c" ,(string-append "TOP_NODE_UP_URL=/manual/"
- language)
+ #$%latest-guix-version
+ "/" language)
#$@options
,texi)))
(format #t "building HTML manual for language '~a'...~%"