Skip to content

Commit 720f502

Browse files
authored
Merge pull request #1773 from ehuss/bump-version
Update to 0.4.16
2 parents a5fddfa + adf6129 commit 720f502

File tree

4 files changed

+27
-3
lines changed

4 files changed

+27
-3
lines changed

CHANGELOG.md

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

3+
## mdBook 0.4.16
4+
[68a5c09...a5fddfa](https://github.com/rust-lang/mdBook/compare/68a5c09...a5fddfa)
5+
6+
### Added
7+
- Added `output.html.print.page-break` config option to control whether or not
8+
there is a page break between chapters in the print output.
9+
[#1728](https://github.com/rust-lang/mdBook/pull/1728)
10+
- Added `output.html.playground.runnable` config option to globally disable
11+
the run button in code blocks.
12+
[#1546](https://github.com/rust-lang/mdBook/pull/1546)
13+
14+
### Changed
15+
- The `cargo serve` live reload websocket now uses the protocol, host, and
16+
port of the current page, allowing access through a proxy.
17+
[#1771](https://github.com/rust-lang/mdBook/pull/1771)
18+
- The 404 not-found page now includes the books title in the HTML title tag.
19+
[#1693](https://github.com/rust-lang/mdBook/pull/1693)
20+
21+
### Fixed
22+
- Minor fixes to the markdown parser.
23+
[#1729](https://github.com/rust-lang/mdBook/pull/1729)
24+
- Fixed incorrect parsing in `SUMMARY.md` when it didn't start with a title.
25+
[#1744](https://github.com/rust-lang/mdBook/pull/1744)
26+
327
## mdBook 0.4.15
428
[5eb7d46...68a5c09](https://github.com/rust-lang/mdBook/compare/5eb7d46...68a5c09)
529

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
@@ -1,6 +1,6 @@
11
[package]
22
name = "mdbook"
3-
version = "0.4.15"
3+
version = "0.4.16"
44
authors = [
55
"Mathieu David <[email protected]>",
66
"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.15/mdbook-v0.4.15-x86_64-unknown-linux-gnu.tar.gz | tar -xz --directory=bin
24+
curl -sSL https://github.com/rust-lang/mdBook/releases/download/v0.4.16/mdbook-v0.4.16-x86_64-unknown-linux-gnu.tar.gz | tar -xz --directory=bin
2525
bin/mdbook build
2626
```
2727

0 commit comments

Comments
 (0)