Skip to content

Commit 785ee56

Browse files
authored
Merge pull request #2690 from ehuss/bump-version
Update to 0.4.49
2 parents 2a4e514 + 006f99e commit 785ee56

File tree

4 files changed

+34
-3
lines changed

4 files changed

+34
-3
lines changed

CHANGELOG.md

+31
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,36 @@
11
# Changelog
22

3+
## mdBook 0.4.49
4+
[v0.4.48...v0.4.49](https://github.com/rust-lang/mdBook/compare/v0.4.48...v0.4.49)
5+
6+
### Added
7+
8+
- Added a warning on unused fields in the root of `book.toml`.
9+
[#2622](https://github.com/rust-lang/mdBook/pull/2622)
10+
11+
### Changed
12+
13+
- Updated dependencies.
14+
[#2650](https://github.com/rust-lang/mdBook/pull/2650)
15+
[#2688](https://github.com/rust-lang/mdBook/pull/2688)
16+
- Updated minimum Rust version to 1.81.
17+
[#2688](https://github.com/rust-lang/mdBook/pull/2688)
18+
- The unused `book.multilingual` field is no longer serialized, or shown in `mdbook init`.
19+
[#2689](https://github.com/rust-lang/mdBook/pull/2689)
20+
- Speed up search index loading by using `JSON.parse` instead of parsing JavaScript.
21+
[#2633](https://github.com/rust-lang/mdBook/pull/2633)
22+
23+
### Fixed
24+
25+
- Search highlighting will not try to highlight in SVG `<text>` elements because it breaks the element.
26+
[#2668](https://github.com/rust-lang/mdBook/pull/2668)
27+
- Fixed scrolling of the sidebar when a search highlight term is in the URL.
28+
[#2675](https://github.com/rust-lang/mdBook/pull/2675)
29+
- Fixed issues when multiple footnote definitions use the same ID. Now, only one definition is used, and a warning is displayed.
30+
[#2681](https://github.com/rust-lang/mdBook/pull/2681)
31+
- The sidebar is now restricted to 80% of the viewport width to make it possible to collapse it when the viewport is very narrow.
32+
[#2679](https://github.com/rust-lang/mdBook/pull/2679)
33+
334
## mdBook 0.4.48
435
[v0.4.47...v0.4.48](https://github.com/rust-lang/mdBook/compare/v0.4.47...v0.4.48)
536

Cargo.lock

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

+1-1
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.48"
12+
version = "0.4.49"
1313
authors = [
1414
"Mathieu David <[email protected]>",
1515
"Michael-F-Bryan <[email protected]>",

guide/src/continuous-integration.md

+1-1
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.48/mdbook-v0.4.48-x86_64-unknown-linux-gnu.tar.gz | tar -xz --directory=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
2525
bin/mdbook build
2626
```
2727

0 commit comments

Comments
 (0)