Bump to 0.5.3

This commit is contained in:
Eric Huss 2026-05-19 15:45:59 -07:00
parent c79580ad71
commit 9ec0628222
10 changed files with 61 additions and 23 deletions

View file

@ -1,5 +1,43 @@
# Changelog # 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 ## mdBook 0.5.2
[v0.5.1...v0.5.2](https://github.com/rust-lang/mdBook/compare/v0.5.1...v0.5.2) [v0.5.1...v0.5.2](https://github.com/rust-lang/mdBook/compare/v0.5.1...v0.5.2)

16
Cargo.lock generated
View file

@ -1041,7 +1041,7 @@ checksum = "47e1ffaa40ddd1f3ed91f717a33c8c0ee23fff369e3aa8772b9605cc1d22f4c3"
[[package]] [[package]]
name = "mdbook" name = "mdbook"
version = "0.5.2" version = "0.5.3"
dependencies = [ dependencies = [
"anyhow", "anyhow",
"axum", "axum",
@ -1078,7 +1078,7 @@ version = "0.0.0"
[[package]] [[package]]
name = "mdbook-core" name = "mdbook-core"
version = "0.5.2" version = "0.5.3"
dependencies = [ dependencies = [
"anyhow", "anyhow",
"regex", "regex",
@ -1091,7 +1091,7 @@ dependencies = [
[[package]] [[package]]
name = "mdbook-driver" name = "mdbook-driver"
version = "0.5.2" version = "0.5.3"
dependencies = [ dependencies = [
"anyhow", "anyhow",
"indexmap", "indexmap",
@ -1113,7 +1113,7 @@ dependencies = [
[[package]] [[package]]
name = "mdbook-html" name = "mdbook-html"
version = "0.5.2" version = "0.5.3"
dependencies = [ dependencies = [
"anyhow", "anyhow",
"ego-tree", "ego-tree",
@ -1138,7 +1138,7 @@ dependencies = [
[[package]] [[package]]
name = "mdbook-markdown" name = "mdbook-markdown"
version = "0.5.2" version = "0.5.3"
dependencies = [ dependencies = [
"pulldown-cmark", "pulldown-cmark",
"regex", "regex",
@ -1147,7 +1147,7 @@ dependencies = [
[[package]] [[package]]
name = "mdbook-preprocessor" name = "mdbook-preprocessor"
version = "0.5.2" version = "0.5.3"
dependencies = [ dependencies = [
"anyhow", "anyhow",
"mdbook-core", "mdbook-core",
@ -1167,7 +1167,7 @@ dependencies = [
[[package]] [[package]]
name = "mdbook-renderer" name = "mdbook-renderer"
version = "0.5.2" version = "0.5.3"
dependencies = [ dependencies = [
"anyhow", "anyhow",
"mdbook-core", "mdbook-core",
@ -1177,7 +1177,7 @@ dependencies = [
[[package]] [[package]]
name = "mdbook-summary" name = "mdbook-summary"
version = "0.5.2" version = "0.5.3"
dependencies = [ dependencies = [
"anyhow", "anyhow",
"mdbook-core", "mdbook-core",

View file

@ -39,13 +39,13 @@ hex = "0.4.3"
html5ever = "0.39.0" html5ever = "0.39.0"
indexmap = "2.14.0" indexmap = "2.14.0"
ignore = "0.4.25" ignore = "0.4.25"
mdbook-core = { path = "crates/mdbook-core", version = "0.5.2" } mdbook-core = { path = "crates/mdbook-core", version = "0.5.3" }
mdbook-driver = { path = "crates/mdbook-driver", version = "0.5.2" } mdbook-driver = { path = "crates/mdbook-driver", version = "0.5.3" }
mdbook-html = { path = "crates/mdbook-html", version = "0.5.2" } mdbook-html = { path = "crates/mdbook-html", version = "0.5.3" }
mdbook-markdown = { path = "crates/mdbook-markdown", version = "0.5.2" } mdbook-markdown = { path = "crates/mdbook-markdown", version = "0.5.3" }
mdbook-preprocessor = { path = "crates/mdbook-preprocessor", version = "0.5.2" } mdbook-preprocessor = { path = "crates/mdbook-preprocessor", version = "0.5.3" }
mdbook-renderer = { path = "crates/mdbook-renderer", version = "0.5.2" } mdbook-renderer = { path = "crates/mdbook-renderer", version = "0.5.3" }
mdbook-summary = { path = "crates/mdbook-summary", version = "0.5.2" } mdbook-summary = { path = "crates/mdbook-summary", version = "0.5.3" }
memchr = "2.8.0" memchr = "2.8.0"
notify = "8.2.0" notify = "8.2.0"
notify-debouncer-mini = "0.7.0" notify-debouncer-mini = "0.7.0"
@ -71,7 +71,7 @@ walkdir = "2.5.0"
[package] [package]
name = "mdbook" name = "mdbook"
version = "0.5.2" version = "0.5.3"
authors = [ authors = [
"Mathieu David <mathieudavid@mathieudavid.org>", "Mathieu David <mathieudavid@mathieudavid.org>",
"Michael-F-Bryan <michaelfbryan@gmail.com>", "Michael-F-Bryan <michaelfbryan@gmail.com>",

View file

@ -1,6 +1,6 @@
[package] [package]
name = "mdbook-core" name = "mdbook-core"
version = "0.5.2" version = "0.5.3"
description = "The base support library for mdbook, intended for internal use only" description = "The base support library for mdbook, intended for internal use only"
edition.workspace = true edition.workspace = true
license.workspace = true license.workspace = true

View file

@ -1,6 +1,6 @@
[package] [package]
name = "mdbook-driver" name = "mdbook-driver"
version = "0.5.2" version = "0.5.3"
description = "High-level library for running mdBook" description = "High-level library for running mdBook"
edition.workspace = true edition.workspace = true
license.workspace = true license.workspace = true

View file

@ -1,6 +1,6 @@
[package] [package]
name = "mdbook-html" name = "mdbook-html"
version = "0.5.2" version = "0.5.3"
description = "mdBook HTML renderer" description = "mdBook HTML renderer"
edition.workspace = true edition.workspace = true
license.workspace = true license.workspace = true

View file

@ -1,6 +1,6 @@
[package] [package]
name = "mdbook-markdown" name = "mdbook-markdown"
version = "0.5.2" version = "0.5.3"
description = "Markdown processing used in mdBook" description = "Markdown processing used in mdBook"
edition.workspace = true edition.workspace = true
license.workspace = true license.workspace = true

View file

@ -1,6 +1,6 @@
[package] [package]
name = "mdbook-preprocessor" name = "mdbook-preprocessor"
version = "0.5.2" version = "0.5.3"
description = "Library to assist implementing an mdBook preprocessor" description = "Library to assist implementing an mdBook preprocessor"
edition.workspace = true edition.workspace = true
license.workspace = true license.workspace = true

View file

@ -1,6 +1,6 @@
[package] [package]
name = "mdbook-renderer" name = "mdbook-renderer"
version = "0.5.2" version = "0.5.3"
description = "Library to assist implementing an mdBook renderer" description = "Library to assist implementing an mdBook renderer"
edition.workspace = true edition.workspace = true
license.workspace = true license.workspace = true

View file

@ -1,6 +1,6 @@
[package] [package]
name = "mdbook-summary" name = "mdbook-summary"
version = "0.5.2" version = "0.5.3"
description = "Summary parser for mdBook" description = "Summary parser for mdBook"
edition.workspace = true edition.workspace = true
license.workspace = true license.workspace = true