From 74fcaf5273e34a8bbaf97f5ea9cf285be176b21e Mon Sep 17 00:00:00 2001 From: Eric Huss Date: Sun, 9 Mar 2025 09:14:57 -0700 Subject: [PATCH] Update to 0.4.47 --- 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 141403b0..51a220cf 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,13 @@ # Changelog +## mdBook 0.4.47 +[v0.4.46...v0.4.47](https://github.com/rust-lang/mdBook/compare/v0.4.46...v0.4.47) + +### Fixed + +- Fixed search not showing up in sub-directories. + [#2586](https://github.com/rust-lang/mdBook/pull/2586) + ## mdBook 0.4.46 [v0.4.45...v0.4.46](https://github.com/rust-lang/mdBook/compare/v0.4.45...v0.4.46) diff --git a/Cargo.lock b/Cargo.lock index 0fb070f0..ce9bea4f 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1205,7 +1205,7 @@ dependencies = [ [[package]] name = "mdbook" -version = "0.4.46" +version = "0.4.47" dependencies = [ "ammonia", "anyhow", diff --git a/Cargo.toml b/Cargo.toml index 1e02efc6..0044fd2a 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -3,7 +3,7 @@ members = [".", "examples/remove-emphasis/mdbook-remove-emphasis"] [package] name = "mdbook" -version = "0.4.46" +version = "0.4.47" authors = [ "Mathieu David ", "Michael-F-Bryan ", diff --git a/guide/src/continuous-integration.md b/guide/src/continuous-integration.md index 6b070238..fd7a60c9 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.46/mdbook-v0.4.46-x86_64-unknown-linux-gnu.tar.gz | tar -xz --directory=bin +curl -sSL https://github.com/rust-lang/mdBook/releases/download/v0.4.47/mdbook-v0.4.47-x86_64-unknown-linux-gnu.tar.gz | tar -xz --directory=bin bin/mdbook build ```