From cab63f521df4bcb50bcecc7a947cd24527714ad3 Mon Sep 17 00:00:00 2001 From: Quentin Gliech Date: Wed, 19 Nov 2025 13:12:20 +0100 Subject: [PATCH] Fix the building of the docs with mdbook 0.5 --- book.toml | 3 +-- misc/build-docs.sh | 2 +- 2 files changed, 2 insertions(+), 3 deletions(-) diff --git a/book.toml b/book.toml index 88f5e8263..fa1f0cfeb 100644 --- a/book.toml +++ b/book.toml @@ -7,9 +7,8 @@ # https://rust-lang.github.io/mdBook/format/config.html [book] title = "Matrix Authentication Service" -authors = ["The Matrix.org Foundation C.I.C."] +authors = ["Element Backend Team"] language = "en" -multilingual = false src = "docs" diff --git a/misc/build-docs.sh b/misc/build-docs.sh index caeab8d85..12818f8af 100644 --- a/misc/build-docs.sh +++ b/misc/build-docs.sh @@ -14,7 +14,7 @@ set -eux # Install the dependencies if we're in the Cloudflare Pages build environment # In this environment, the CF_PAGES environment variable is set to 1 if [ "${CF_PAGES:-""}" = "1" ]; then - MDBOOK_VERSION=0.4.32 + MDBOOK_VERSION=0.5.0 # Install rustup curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | sh -s -- --default-toolchain none -y