Skip to content

Commit f6dd0a4

Browse files
authored
Merge pull request #2753 from ehuss/bump-version
Update to 0.4.52
2 parents 6b1dc01 + 432b429 commit f6dd0a4

File tree

4 files changed

+32
-3
lines changed

4 files changed

+32
-3
lines changed

CHANGELOG.md

Lines changed: 29 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,34 @@
11
# Changelog
22

3+
## mdBook 0.4.52
4+
[v0.4.51...v0.4.52](https://github.com/rust-lang/mdBook/compare/v0.4.51...v0.4.52)
5+
6+
**Note:** If you have a custom `index.hbs` theme file, it is recommended that you update it to the latest version to pick up the fixes in this release.
7+
8+
### Added
9+
- Added the ability to redirect `#` HTML fragments using the existing `output.html.redirect` table.
10+
[#2747](https://github.com/rust-lang/mdBook/pull/2747)
11+
- Added the `rel="edit"` attribute to the edit page button.
12+
[#2702](https://github.com/rust-lang/mdBook/pull/2702)
13+
14+
### Changed
15+
- The search index is now only loaded when the search input is opened instead of always being loaded.
16+
[#2553](https://github.com/rust-lang/mdBook/pull/2553)
17+
[#2735](https://github.com/rust-lang/mdBook/pull/2735)
18+
- The `mdbook serve` command has switched its underlying server library from warp to axum.
19+
[#2748](https://github.com/rust-lang/mdBook/pull/2748)
20+
- Updated dependencies.
21+
[#2752](https://github.com/rust-lang/mdBook/pull/2752)
22+
23+
### Fixed
24+
- The sidebar is now set to `display:none` when it is hidden in order to prevent the browser's search from thinking the sidebar's text is visible.
25+
[#2725](https://github.com/rust-lang/mdBook/pull/2725)
26+
- Fixed search index URL not updating correctly when `hash-files` is enabled.
27+
[#2742](https://github.com/rust-lang/mdBook/pull/2742)
28+
[#2746](https://github.com/rust-lang/mdBook/pull/2746)
29+
- Fixed several sidebar animation bugs, particularly when manually resizing.
30+
[#2750](https://github.com/rust-lang/mdBook/pull/2750)
31+
332
## mdBook 0.4.51
433
[v0.4.50...v0.4.51](https://github.com/rust-lang/mdBook/compare/v0.4.50...v0.4.51)
534

Cargo.lock

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ needless-lifetimes = "allow" # Remove once 1.87 is stable, https://github.com/r
99

1010
[package]
1111
name = "mdbook"
12-
version = "0.4.51"
12+
version = "0.4.52"
1313
authors = [
1414
"Mathieu David <mathieudavid@mathieudavid.org>",
1515
"Michael-F-Bryan <michaelfbryan@gmail.com>",

guide/src/continuous-integration.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ A simple approach would be to use the popular `curl` CLI tool to download the ex
2121

2222
```sh
2323
mkdir bin
24-
curl -sSL https://github.com/rust-lang/mdBook/releases/download/v0.4.51/mdbook-v0.4.51-x86_64-unknown-linux-gnu.tar.gz | tar -xz --directory=bin
24+
curl -sSL https://github.com/rust-lang/mdBook/releases/download/v0.4.52/mdbook-v0.4.52-x86_64-unknown-linux-gnu.tar.gz | tar -xz --directory=bin
2525
bin/mdbook build
2626
```
2727

0 commit comments

Comments
 (0)