Skip to content

Commit 851932b

Browse files
committed
Update to 0.4.50
1 parent 564c80b commit 851932b

File tree

4 files changed

+31
-3
lines changed

4 files changed

+31
-3
lines changed

CHANGELOG.md

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

3+
## mdBook 0.4.50
4+
[v0.4.49...v0.4.50](https://github.com/rust-lang/mdBook/compare/v0.4.49...v0.4.50)
5+
6+
### Added
7+
8+
- Added a keyboard shortcut help popup when pressing `?`.
9+
[#2608](https://github.com/rust-lang/mdBook/pull/2608)
10+
11+
### Changed
12+
13+
- Changed the look of the sidebar resize handle to match the new rustdoc format.
14+
[#2691](https://github.com/rust-lang/mdBook/pull/2691)
15+
- `/` can now be used to open the search bar.
16+
[#2698](https://github.com/rust-lang/mdBook/pull/2698)
17+
- Pressing enter from the search bar will navigate to the first entry.
18+
[#2698](https://github.com/rust-lang/mdBook/pull/2698)
19+
- Updated `opener` to drop some dependencies.
20+
[#2709](https://github.com/rust-lang/mdBook/pull/2709)
21+
- Updated dependencies, MSRV raised to 1.82.
22+
[#2711](https://github.com/rust-lang/mdBook/pull/2711)
23+
24+
### Fixed
25+
26+
- Fixed uncaught exception when pressing down when there are no search results.
27+
[#2698](https://github.com/rust-lang/mdBook/pull/2698)
28+
- Fixed syntax highlighting of Rust code in the ACE editor.
29+
[#2710](https://github.com/rust-lang/mdBook/pull/2710)
30+
331
## mdBook 0.4.49
432
[v0.4.48...v0.4.49](https://github.com/rust-lang/mdBook/compare/v0.4.48...v0.4.49)
533

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.49"
12+
version = "0.4.50"
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.49/mdbook-v0.4.49-x86_64-unknown-linux-gnu.tar.gz | tar -xz --directory=bin
24+
curl -sSL https://github.com/rust-lang/mdBook/releases/download/v0.4.50/mdbook-v0.4.50-x86_64-unknown-linux-gnu.tar.gz | tar -xz --directory=bin
2525
bin/mdbook build
2626
```
2727

0 commit comments

Comments
 (0)