Bump to 0.5.3
This commit is contained in:
parent
c79580ad71
commit
9ec0628222
10 changed files with 61 additions and 23 deletions
38
CHANGELOG.md
38
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)
|
||||
|
||||
|
|
|
|||
16
Cargo.lock
generated
16
Cargo.lock
generated
|
|
@ -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",
|
||||
|
|
|
|||
16
Cargo.toml
16
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 <mathieudavid@mathieudavid.org>",
|
||||
"Michael-F-Bryan <michaelfbryan@gmail.com>",
|
||||
|
|
|
|||
|
|
@ -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
|
||||
|
|
|
|||
|
|
@ -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
|
||||
|
|
|
|||
|
|
@ -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
|
||||
|
|
|
|||
|
|
@ -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
|
||||
|
|
|
|||
|
|
@ -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
|
||||
|
|
|
|||
|
|
@ -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
|
||||
|
|
|
|||
|
|
@ -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
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue