From 7e3d2f96abb658ba9245144360b2512d44153eae Mon Sep 17 00:00:00 2001 From: Eric Huss Date: Mon, 17 Feb 2025 10:18:04 -0800 Subject: [PATCH] Update to 0.4.45 --- CHANGELOG.md | 15 +++++++++++++++ Cargo.lock | 2 +- Cargo.toml | 2 +- guide/src/continuous-integration.md | 2 +- 4 files changed, 18 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 5b64ba0123..4b233e05c4 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,20 @@ # Changelog +## mdBook 0.4.45 +[v0.4.44...v0.4.45](https://github.com/rust-lang/mdBook/compare/v0.4.44...v0.4.45) + +### Changed + +- Added context to error message when rustdoc is not found. + [#2545](https://github.com/rust-lang/mdBook/pull/2545) +- Slightly changed the styling rules around margins of footnotes. + [#2524](https://github.com/rust-lang/mdBook/pull/2524) + +### Fixed + +- Fixed an issue where it would panic if a source_path is not set. + [#2550](https://github.com/rust-lang/mdBook/pull/2550) + ## mdBook 0.4.44 [v0.4.43...v0.4.44](https://github.com/rust-lang/mdBook/compare/v0.4.43...v0.4.44) diff --git a/Cargo.lock b/Cargo.lock index f4c787cda7..81bb1db635 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1199,7 +1199,7 @@ dependencies = [ [[package]] name = "mdbook" -version = "0.4.44" +version = "0.4.45" dependencies = [ "ammonia", "anyhow", diff --git a/Cargo.toml b/Cargo.toml index 78905df79a..216e0b9cc7 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -3,7 +3,7 @@ members = [".", "examples/remove-emphasis/mdbook-remove-emphasis"] [package] name = "mdbook" -version = "0.4.44" +version = "0.4.45" authors = [ "Mathieu David ", "Michael-F-Bryan ", diff --git a/guide/src/continuous-integration.md b/guide/src/continuous-integration.md index 5d9773cfa3..aa796e99f3 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.44/mdbook-v0.4.44-x86_64-unknown-linux-gnu.tar.gz | tar -xz --directory=bin +curl -sSL https://github.com/rust-lang/mdBook/releases/download/v0.4.45/mdbook-v0.4.45-x86_64-unknown-linux-gnu.tar.gz | tar -xz --directory=bin bin/mdbook build ```