From 9ec06282227eaa6055268e2ba3dfd1f15f16fabf Mon Sep 17 00:00:00 2001 From: Eric Huss Date: Tue, 19 May 2026 15:45:59 -0700 Subject: [PATCH] Bump to 0.5.3 --- CHANGELOG.md | 38 +++++++++++++++++++++++++++ Cargo.lock | 16 +++++------ Cargo.toml | 16 +++++------ crates/mdbook-core/Cargo.toml | 2 +- crates/mdbook-driver/Cargo.toml | 2 +- crates/mdbook-html/Cargo.toml | 2 +- crates/mdbook-markdown/Cargo.toml | 2 +- crates/mdbook-preprocessor/Cargo.toml | 2 +- crates/mdbook-renderer/Cargo.toml | 2 +- crates/mdbook-summary/Cargo.toml | 2 +- 10 files changed, 61 insertions(+), 23 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index e4fca992..9165c904 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,43 @@ # Changelog +## mdBook 0.5.3 +[v0.5.2...v0.5.3](https://github.com/rust-lang/mdBook/compare/v0.5.2...v0.5.3) + +### Changed + +- Improve spacing in sidebar section headings. + [#3122](https://github.com/rust-lang/mdBook/pull/3122) +- Updated cargo dependencies. + [#3083](https://github.com/rust-lang/mdBook/pull/3083) + [#3077](https://github.com/rust-lang/mdBook/pull/3077) + [#3058](https://github.com/rust-lang/mdBook/pull/3058) + [#3057](https://github.com/rust-lang/mdBook/pull/3057) + [#3042](https://github.com/rust-lang/mdBook/pull/3042) + [#3045](https://github.com/rust-lang/mdBook/pull/3045) + [#3044](https://github.com/rust-lang/mdBook/pull/3044) + [#3036](https://github.com/rust-lang/mdBook/pull/3036) + [#3022](https://github.com/rust-lang/mdBook/pull/3022) + [#3017](https://github.com/rust-lang/mdBook/pull/3017) + [#3018](https://github.com/rust-lang/mdBook/pull/3018) + [#3019](https://github.com/rust-lang/mdBook/pull/3019) + [#2998](https://github.com/rust-lang/mdBook/pull/2998) + [#2996](https://github.com/rust-lang/mdBook/pull/2996) + +### Fixed + +- The "current" page highlighting in the sidebar now handles servers that redirect and strip the `.html` extension. + [#3028](https://github.com/rust-lang/mdBook/pull/3028) +- Remove `?highlight=` from URL when highlights are dismissed via clicking. + [#3084](https://github.com/rust-lang/mdBook/pull/3084) +- Fix global keypresses triggering when other elements are in focus. + [#3087](https://github.com/rust-lang/mdBook/pull/3087) +- Fix download URL format for mdBook in CI guide. + [#3073](https://github.com/rust-lang/mdBook/pull/3073) +- Improve error message for invalid Font Awesome icons. + [#3037](https://github.com/rust-lang/mdBook/pull/3037) +- Fix nested admonitions that use wrong header colors. + [#3035](https://github.com/rust-lang/mdBook/pull/3035) + ## mdBook 0.5.2 [v0.5.1...v0.5.2](https://github.com/rust-lang/mdBook/compare/v0.5.1...v0.5.2) diff --git a/Cargo.lock b/Cargo.lock index 20ccbc81..ab47887e 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1041,7 +1041,7 @@ checksum = "47e1ffaa40ddd1f3ed91f717a33c8c0ee23fff369e3aa8772b9605cc1d22f4c3" [[package]] name = "mdbook" -version = "0.5.2" +version = "0.5.3" dependencies = [ "anyhow", "axum", @@ -1078,7 +1078,7 @@ version = "0.0.0" [[package]] name = "mdbook-core" -version = "0.5.2" +version = "0.5.3" dependencies = [ "anyhow", "regex", @@ -1091,7 +1091,7 @@ dependencies = [ [[package]] name = "mdbook-driver" -version = "0.5.2" +version = "0.5.3" dependencies = [ "anyhow", "indexmap", @@ -1113,7 +1113,7 @@ dependencies = [ [[package]] name = "mdbook-html" -version = "0.5.2" +version = "0.5.3" dependencies = [ "anyhow", "ego-tree", @@ -1138,7 +1138,7 @@ dependencies = [ [[package]] name = "mdbook-markdown" -version = "0.5.2" +version = "0.5.3" dependencies = [ "pulldown-cmark", "regex", @@ -1147,7 +1147,7 @@ dependencies = [ [[package]] name = "mdbook-preprocessor" -version = "0.5.2" +version = "0.5.3" dependencies = [ "anyhow", "mdbook-core", @@ -1167,7 +1167,7 @@ dependencies = [ [[package]] name = "mdbook-renderer" -version = "0.5.2" +version = "0.5.3" dependencies = [ "anyhow", "mdbook-core", @@ -1177,7 +1177,7 @@ dependencies = [ [[package]] name = "mdbook-summary" -version = "0.5.2" +version = "0.5.3" dependencies = [ "anyhow", "mdbook-core", diff --git a/Cargo.toml b/Cargo.toml index ff8766c2..21b8d4fc 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -39,13 +39,13 @@ hex = "0.4.3" html5ever = "0.39.0" indexmap = "2.14.0" ignore = "0.4.25" -mdbook-core = { path = "crates/mdbook-core", version = "0.5.2" } -mdbook-driver = { path = "crates/mdbook-driver", version = "0.5.2" } -mdbook-html = { path = "crates/mdbook-html", version = "0.5.2" } -mdbook-markdown = { path = "crates/mdbook-markdown", version = "0.5.2" } -mdbook-preprocessor = { path = "crates/mdbook-preprocessor", version = "0.5.2" } -mdbook-renderer = { path = "crates/mdbook-renderer", version = "0.5.2" } -mdbook-summary = { path = "crates/mdbook-summary", version = "0.5.2" } +mdbook-core = { path = "crates/mdbook-core", version = "0.5.3" } +mdbook-driver = { path = "crates/mdbook-driver", version = "0.5.3" } +mdbook-html = { path = "crates/mdbook-html", version = "0.5.3" } +mdbook-markdown = { path = "crates/mdbook-markdown", version = "0.5.3" } +mdbook-preprocessor = { path = "crates/mdbook-preprocessor", version = "0.5.3" } +mdbook-renderer = { path = "crates/mdbook-renderer", version = "0.5.3" } +mdbook-summary = { path = "crates/mdbook-summary", version = "0.5.3" } memchr = "2.8.0" notify = "8.2.0" notify-debouncer-mini = "0.7.0" @@ -71,7 +71,7 @@ walkdir = "2.5.0" [package] name = "mdbook" -version = "0.5.2" +version = "0.5.3" authors = [ "Mathieu David ", "Michael-F-Bryan ", diff --git a/crates/mdbook-core/Cargo.toml b/crates/mdbook-core/Cargo.toml index f1aada82..bce2d09e 100644 --- a/crates/mdbook-core/Cargo.toml +++ b/crates/mdbook-core/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "mdbook-core" -version = "0.5.2" +version = "0.5.3" description = "The base support library for mdbook, intended for internal use only" edition.workspace = true license.workspace = true diff --git a/crates/mdbook-driver/Cargo.toml b/crates/mdbook-driver/Cargo.toml index 92bc19f9..fc10b662 100644 --- a/crates/mdbook-driver/Cargo.toml +++ b/crates/mdbook-driver/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "mdbook-driver" -version = "0.5.2" +version = "0.5.3" description = "High-level library for running mdBook" edition.workspace = true license.workspace = true diff --git a/crates/mdbook-html/Cargo.toml b/crates/mdbook-html/Cargo.toml index 7ca8b080..f8b51c21 100644 --- a/crates/mdbook-html/Cargo.toml +++ b/crates/mdbook-html/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "mdbook-html" -version = "0.5.2" +version = "0.5.3" description = "mdBook HTML renderer" edition.workspace = true license.workspace = true diff --git a/crates/mdbook-markdown/Cargo.toml b/crates/mdbook-markdown/Cargo.toml index a80a0908..44d3f534 100644 --- a/crates/mdbook-markdown/Cargo.toml +++ b/crates/mdbook-markdown/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "mdbook-markdown" -version = "0.5.2" +version = "0.5.3" description = "Markdown processing used in mdBook" edition.workspace = true license.workspace = true diff --git a/crates/mdbook-preprocessor/Cargo.toml b/crates/mdbook-preprocessor/Cargo.toml index 90a12edd..1a8a9b9b 100644 --- a/crates/mdbook-preprocessor/Cargo.toml +++ b/crates/mdbook-preprocessor/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "mdbook-preprocessor" -version = "0.5.2" +version = "0.5.3" description = "Library to assist implementing an mdBook preprocessor" edition.workspace = true license.workspace = true diff --git a/crates/mdbook-renderer/Cargo.toml b/crates/mdbook-renderer/Cargo.toml index 8cb8aff1..13761a7a 100644 --- a/crates/mdbook-renderer/Cargo.toml +++ b/crates/mdbook-renderer/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "mdbook-renderer" -version = "0.5.2" +version = "0.5.3" description = "Library to assist implementing an mdBook renderer" edition.workspace = true license.workspace = true diff --git a/crates/mdbook-summary/Cargo.toml b/crates/mdbook-summary/Cargo.toml index 31978b4d..62749210 100644 --- a/crates/mdbook-summary/Cargo.toml +++ b/crates/mdbook-summary/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "mdbook-summary" -version = "0.5.2" +version = "0.5.3" description = "Summary parser for mdBook" edition.workspace = true license.workspace = true