Merge pull request #2985 from ehuss/bump-version

Update to 0.5.2
This commit is contained in:
Eric Huss
2025-12-11 19:47:18 +00:00
committed by GitHub
10 changed files with 44 additions and 23 deletions

View File

@@ -1,5 +1,26 @@
# Changelog # Changelog
## mdBook 0.5.2
[v0.5.1...v0.5.2](https://github.com/rust-lang/mdBook/compare/v0.5.1...v0.5.2)
### Changed
- Updated Rust crate html5ever to 0.36.0.
[#2970](https://github.com/rust-lang/mdBook/pull/2970)
- Updated cargo dependencies.
[#2969](https://github.com/rust-lang/mdBook/pull/2969)
### Fixed
- Fixed repeated error message when HTML config is invalid in `mdbook serve`.
[#2983](https://github.com/rust-lang/mdBook/pull/2983)
- Fixed sidebar scroll position when heading nav is involved.
[#2982](https://github.com/rust-lang/mdBook/pull/2982)
- Fixed color for rustdoc error messages.
[#2981](https://github.com/rust-lang/mdBook/pull/2981)
- Fixed usage of custom preprocessors with `MDBook::test`.
[#2980](https://github.com/rust-lang/mdBook/pull/2980)
## mdBook 0.5.1 ## mdBook 0.5.1
[v0.5.0...v0.5.1](https://github.com/rust-lang/mdBook/compare/v0.5.0...v0.5.1) [v0.5.0...v0.5.1](https://github.com/rust-lang/mdBook/compare/v0.5.0...v0.5.1)

16
Cargo.lock generated
View File

@@ -943,7 +943,7 @@ checksum = "47e1ffaa40ddd1f3ed91f717a33c8c0ee23fff369e3aa8772b9605cc1d22f4c3"
[[package]] [[package]]
name = "mdbook" name = "mdbook"
version = "0.5.1" version = "0.5.2"
dependencies = [ dependencies = [
"anyhow", "anyhow",
"axum", "axum",
@@ -983,7 +983,7 @@ version = "0.0.0"
[[package]] [[package]]
name = "mdbook-core" name = "mdbook-core"
version = "0.5.1" version = "0.5.2"
dependencies = [ dependencies = [
"anyhow", "anyhow",
"regex", "regex",
@@ -996,7 +996,7 @@ dependencies = [
[[package]] [[package]]
name = "mdbook-driver" name = "mdbook-driver"
version = "0.5.1" version = "0.5.2"
dependencies = [ dependencies = [
"anyhow", "anyhow",
"indexmap", "indexmap",
@@ -1018,7 +1018,7 @@ dependencies = [
[[package]] [[package]]
name = "mdbook-html" name = "mdbook-html"
version = "0.5.1" version = "0.5.2"
dependencies = [ dependencies = [
"anyhow", "anyhow",
"ego-tree", "ego-tree",
@@ -1043,7 +1043,7 @@ dependencies = [
[[package]] [[package]]
name = "mdbook-markdown" name = "mdbook-markdown"
version = "0.5.1" version = "0.5.2"
dependencies = [ dependencies = [
"pulldown-cmark", "pulldown-cmark",
"regex", "regex",
@@ -1052,7 +1052,7 @@ dependencies = [
[[package]] [[package]]
name = "mdbook-preprocessor" name = "mdbook-preprocessor"
version = "0.5.1" version = "0.5.2"
dependencies = [ dependencies = [
"anyhow", "anyhow",
"mdbook-core", "mdbook-core",
@@ -1072,7 +1072,7 @@ dependencies = [
[[package]] [[package]]
name = "mdbook-renderer" name = "mdbook-renderer"
version = "0.5.1" version = "0.5.2"
dependencies = [ dependencies = [
"anyhow", "anyhow",
"mdbook-core", "mdbook-core",
@@ -1082,7 +1082,7 @@ dependencies = [
[[package]] [[package]]
name = "mdbook-summary" name = "mdbook-summary"
version = "0.5.1" version = "0.5.2"
dependencies = [ dependencies = [
"anyhow", "anyhow",
"mdbook-core", "mdbook-core",

View File

@@ -39,13 +39,13 @@ hex = "0.4.3"
html5ever = "0.36.0" html5ever = "0.36.0"
indexmap = "2.12.1" indexmap = "2.12.1"
ignore = "0.4.25" ignore = "0.4.25"
mdbook-core = { path = "crates/mdbook-core", version = "0.5.1" } mdbook-core = { path = "crates/mdbook-core", version = "0.5.2" }
mdbook-driver = { path = "crates/mdbook-driver", version = "0.5.1" } mdbook-driver = { path = "crates/mdbook-driver", version = "0.5.2" }
mdbook-html = { path = "crates/mdbook-html", version = "0.5.1" } mdbook-html = { path = "crates/mdbook-html", version = "0.5.2" }
mdbook-markdown = { path = "crates/mdbook-markdown", version = "0.5.1" } mdbook-markdown = { path = "crates/mdbook-markdown", version = "0.5.2" }
mdbook-preprocessor = { path = "crates/mdbook-preprocessor", version = "0.5.1" } mdbook-preprocessor = { path = "crates/mdbook-preprocessor", version = "0.5.2" }
mdbook-renderer = { path = "crates/mdbook-renderer", version = "0.5.1" } mdbook-renderer = { path = "crates/mdbook-renderer", version = "0.5.2" }
mdbook-summary = { path = "crates/mdbook-summary", version = "0.5.1" } mdbook-summary = { path = "crates/mdbook-summary", version = "0.5.2" }
memchr = "2.7.6" memchr = "2.7.6"
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.1" version = "0.5.2"
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.1" version = "0.5.2"
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.1" version = "0.5.2"
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.1" version = "0.5.2"
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.1" version = "0.5.2"
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.1" version = "0.5.2"
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.1" version = "0.5.2"
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.1" version = "0.5.2"
description = "Summary parser for mdBook" description = "Summary parser for mdBook"
edition.workspace = true edition.workspace = true
license.workspace = true license.workspace = true