From c5a506e24008d55fdf00bd4615e07c54fe23fc56 Mon Sep 17 00:00:00 2001 From: Eric Huss Date: Tue, 6 Feb 2024 19:34:15 -0800 Subject: [PATCH] Update to 0.4.37 --- CHANGELOG.md | 24 ++++++++++++++++++++++++ Cargo.lock | 2 +- Cargo.toml | 2 +- guide/src/continuous-integration.md | 2 +- 4 files changed, 27 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 8a515bc5..94b60f2f 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,29 @@ # Changelog +## mdBook 0.4.37 +[v0.4.36...v0.4.37](https://github.com/rust-lang/mdBook/compare/v0.4.36...v0.4.37) + +### Changed +- ❗️ Updated the markdown parser. This brings in many changes to more closely follow the CommonMark spec. This may cause some small rendering changes. It is recommended to compare the output of the old and new version to check for changes. See for more information. + [#2308](https://github.com/rust-lang/mdBook/pull/2308) +- The warning about the legacy `src/theme` directory has been removed. + [#2263](https://github.com/rust-lang/mdBook/pull/2263) +- Updated dependencies. MSRV raised to 1.71.0. + [#2283](https://github.com/rust-lang/mdBook/pull/2283) + [#2293](https://github.com/rust-lang/mdBook/pull/2293) + [#2297](https://github.com/rust-lang/mdBook/pull/2297) + [#2310](https://github.com/rust-lang/mdBook/pull/2310) + [#2309](https://github.com/rust-lang/mdBook/pull/2309) +- Some internal performance/memory improvements. + [#2273](https://github.com/rust-lang/mdBook/pull/2273) + [#2290](https://github.com/rust-lang/mdBook/pull/2290) +- Made the `pathdiff` dependency optional based on the `watch` feature. + [#2291](https://github.com/rust-lang/mdBook/pull/2291) + +### Fixed +- The `s` shortcut key handler should not trigger when focus is in an HTML form. + [#2311](https://github.com/rust-lang/mdBook/pull/2311) + ## mdBook 0.4.36 [v0.4.35...v0.4.36](https://github.com/rust-lang/mdBook/compare/v0.4.35...v0.4.36) diff --git a/Cargo.lock b/Cargo.lock index 815be0b1..1290c89f 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -913,7 +913,7 @@ dependencies = [ [[package]] name = "mdbook" -version = "0.4.36" +version = "0.4.37" dependencies = [ "ammonia", "anyhow", diff --git a/Cargo.toml b/Cargo.toml index dcaa2ad9..2beec26a 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "mdbook" -version = "0.4.36" +version = "0.4.37" authors = [ "Mathieu David ", "Michael-F-Bryan ", diff --git a/guide/src/continuous-integration.md b/guide/src/continuous-integration.md index 27e78516..4e438c36 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.36/mdbook-v0.4.36-x86_64-unknown-linux-gnu.tar.gz | tar -xz --directory=bin +curl -sSL https://github.com/rust-lang/mdBook/releases/download/v0.4.37/mdbook-v0.4.37-x86_64-unknown-linux-gnu.tar.gz | tar -xz --directory=bin bin/mdbook build ```