From 55fe75c716e17c353f6ccc72c06f0ec49652267b Mon Sep 17 00:00:00 2001 From: Eric Huss Date: Thu, 7 Nov 2024 06:42:05 -0800 Subject: [PATCH] Update to 0.4.42 --- CHANGELOG.md | 8 ++++++++ Cargo.lock | 2 +- Cargo.toml | 2 +- guide/src/continuous-integration.md | 2 +- 4 files changed, 11 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index e4be5b9d54..c70b0ade55 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,13 @@ # Changelog +## mdBook 0.4.42 +[v0.4.41...v0.4.42](https://github.com/rust-lang/mdBook/compare/v0.4.41...v0.4.42) + +### Fixed + +- Fixed chapter list folding. + [#2473](https://github.com/rust-lang/mdBook/pull/2473) + ## mdBook 0.4.41 [v0.4.40...v0.4.41](https://github.com/rust-lang/mdBook/compare/v0.4.40...v0.4.41) diff --git a/Cargo.lock b/Cargo.lock index 0289ed672a..299e8daa53 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1139,7 +1139,7 @@ dependencies = [ [[package]] name = "mdbook" -version = "0.4.41" +version = "0.4.42" dependencies = [ "ammonia", "anyhow", diff --git a/Cargo.toml b/Cargo.toml index 653d6b8007..5d593b2700 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -3,7 +3,7 @@ members = [".", "examples/remove-emphasis/mdbook-remove-emphasis"] [package] name = "mdbook" -version = "0.4.41" +version = "0.4.42" authors = [ "Mathieu David ", "Michael-F-Bryan ", diff --git a/guide/src/continuous-integration.md b/guide/src/continuous-integration.md index 421d62063b..9e0f48ff0c 100644 --- a/guide/src/continuous-integration.md +++ b/guide/src/continuous-integration.md @@ -21,7 +21,7 @@ A simple approach would be to use the popular `curl` CLI tool to download the ex ```sh mkdir bin -curl -sSL https://github.com/rust-lang/mdBook/releases/download/v0.4.41/mdbook-v0.4.41-x86_64-unknown-linux-gnu.tar.gz | tar -xz --directory=bin +curl -sSL https://github.com/rust-lang/mdBook/releases/download/v0.4.42/mdbook-v0.4.42-x86_64-unknown-linux-gnu.tar.gz | tar -xz --directory=bin bin/mdbook build ```