From ed407b091c4ba346a94e0b8b3182b079d4dc3f87 Mon Sep 17 00:00:00 2001 From: Eric Huss Date: Mon, 25 Nov 2024 09:14:43 -0800 Subject: [PATCH] Update to 0.4.43 --- CHANGELOG.md | 13 +++++++++++++ Cargo.lock | 2 +- Cargo.toml | 2 +- guide/src/continuous-integration.md | 2 +- 4 files changed, 16 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index cd10dbf424..345cbedb16 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,18 @@ # Changelog +## mdBook 0.4.43 +[v0.4.42...v0.4.43](https://github.com/rust-lang/mdBook/compare/v0.4.42...v0.4.43) + +### Fixed + +- Fixed setting the title in `mdbook init` when no git user is configured. + [#2486](https://github.com/rust-lang/mdBook/pull/2486) + +### Changed + +- The Rust 2024 edition no longer needs `-Zunstable-options`. + [#2495](https://github.com/rust-lang/mdBook/pull/2495) + ## mdBook 0.4.42 [v0.4.41...v0.4.42](https://github.com/rust-lang/mdBook/compare/v0.4.41...v0.4.42) diff --git a/Cargo.lock b/Cargo.lock index 299e8daa53..3fb221bcef 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1139,7 +1139,7 @@ dependencies = [ [[package]] name = "mdbook" -version = "0.4.42" +version = "0.4.43" dependencies = [ "ammonia", "anyhow", diff --git a/Cargo.toml b/Cargo.toml index 5d593b2700..04063a45a6 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -3,7 +3,7 @@ members = [".", "examples/remove-emphasis/mdbook-remove-emphasis"] [package] name = "mdbook" -version = "0.4.42" +version = "0.4.43" authors = [ "Mathieu David ", "Michael-F-Bryan ", diff --git a/guide/src/continuous-integration.md b/guide/src/continuous-integration.md index 9e0f48ff0c..97a00f6bec 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.42/mdbook-v0.4.42-x86_64-unknown-linux-gnu.tar.gz | tar -xz --directory=bin +curl -sSL https://github.com/rust-lang/mdBook/releases/download/v0.4.43/mdbook-v0.4.43-x86_64-unknown-linux-gnu.tar.gz | tar -xz --directory=bin bin/mdbook build ```