Skip to content

Commit d67dbc7

Browse files
committed
Update to 0.4.48
1 parent 4946c78 commit d67dbc7

File tree

4 files changed

+22
-3
lines changed

4 files changed

+22
-3
lines changed

CHANGELOG.md

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

3+
## mdBook 0.4.48
4+
[v0.4.47...v0.4.48](https://github.com/rust-lang/mdBook/compare/v0.4.47...v0.4.48)
5+
6+
### Added
7+
8+
- Footnotes now have back-reference links. These links bring the reader back to the original location. As part of this change, footnotes are now only rendered at the bottom of the page. This also includes some styling updates and fixes for footnote rendering.
9+
[#2626](https://github.com/rust-lang/mdBook/pull/2626)
10+
- Added an "Auto" theme selection option which will default to the system-preferred mode. This will also automatically switch when the system changes the preferred mode.
11+
[#2576](https://github.com/rust-lang/mdBook/pull/2576)
12+
13+
### Changed
14+
15+
- The `searchindex.json` file has been removed; only the `searchindex.js` file will be generated.
16+
[#2552](https://github.com/rust-lang/mdBook/pull/2552)
17+
- Updated Javascript code to use eslint.
18+
[#2554](https://github.com/rust-lang/mdBook/pull/2554)
19+
- An error is generated if there are duplicate files in `SUMMARY.md`.
20+
[#2613](https://github.com/rust-lang/mdBook/pull/2613)
21+
322
## mdBook 0.4.47
423
[v0.4.46...v0.4.47](https://github.com/rust-lang/mdBook/compare/v0.4.46...v0.4.47)
524

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
@@ -3,7 +3,7 @@ members = [".", "examples/remove-emphasis/mdbook-remove-emphasis"]
33

44
[package]
55
name = "mdbook"
6-
version = "0.4.47"
6+
version = "0.4.48"
77
authors = [
88
"Mathieu David <[email protected]>",
99
"Michael-F-Bryan <[email protected]>",

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

0 commit comments

Comments
 (0)