diff --git a/CHANGELOG.md b/CHANGELOG.md index 965e54c519..e4be5b9d54 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,37 @@ # Changelog +## mdBook 0.4.41 +[v0.4.40...v0.4.41](https://github.com/rust-lang/mdBook/compare/v0.4.40...v0.4.41) + +### Added + +- Added preliminary support for Rust 2024 edition. + [#2398](https://github.com/rust-lang/mdBook/pull/2398) +- Added a full example of the remove-emphasis preprocessor. + [#2464](https://github.com/rust-lang/mdBook/pull/2464) + +### Changed + +- Adjusted styling of clipboard/play icons. + [#2421](https://github.com/rust-lang/mdBook/pull/2421) +- Updated to handlebars v6. + [#2416](https://github.com/rust-lang/mdBook/pull/2416) +- Attr and section rules now have specific code highlighting. + [#2448](https://github.com/rust-lang/mdBook/pull/2448) +- The sidebar is now loaded from a common file, significantly reducing the book size when there are many chapters. + [#2414](https://github.com/rust-lang/mdBook/pull/2414) +- Updated dependencies. + [#2470](https://github.com/rust-lang/mdBook/pull/2470) + +### Fixed + +- Improved theme support when JavaScript is disabled. + [#2454](https://github.com/rust-lang/mdBook/pull/2454) +- Fixed broken themes when localStorage has an invalid theme id. + [#2463](https://github.com/rust-lang/mdBook/pull/2463) +- Adjusted the line-height of superscripts (and footnotes) to avoid adding extra space between lines. + [#2465](https://github.com/rust-lang/mdBook/pull/2465) + ## mdBook 0.4.40 [v0.4.39...v0.4.40](https://github.com/rust-lang/mdBook/compare/v0.4.39...v0.4.40) diff --git a/Cargo.lock b/Cargo.lock index ee69a6c499..87a33b0aa1 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -977,7 +977,7 @@ dependencies = [ [[package]] name = "mdbook" -version = "0.4.40" +version = "0.4.41" dependencies = [ "ammonia", "anyhow", diff --git a/Cargo.toml b/Cargo.toml index be75c90f34..653d6b8007 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -3,7 +3,7 @@ members = [".", "examples/remove-emphasis/mdbook-remove-emphasis"] [package] name = "mdbook" -version = "0.4.40" +version = "0.4.41" authors = [ "Mathieu David ", "Michael-F-Bryan ", diff --git a/guide/src/continuous-integration.md b/guide/src/continuous-integration.md index 25168869d2..421d62063b 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.40/mdbook-v0.4.40-x86_64-unknown-linux-gnu.tar.gz | tar -xz --directory=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 bin/mdbook build ```