diff options
author | Eric Huss <eric@huss.org> | 2022-03-29 17:45:05 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-03-29 17:45:05 -0700 |
commit | 720f502e9d3d018c795089e9ca95929ffaf9d19e (patch) | |
tree | 0eed7301a43b0dd99fef884de7aa344a28e48137 | |
parent | a5fddfa4683e45b1ab6d26629670acfcd5b4f18a (diff) | |
parent | adf6129769588298b0e73dc7b2d891e0ec789093 (diff) |
Merge pull request #1773 from ehuss/bump-versionv0.4.16
Update to 0.4.16
-rw-r--r-- | CHANGELOG.md | 24 | ||||
-rw-r--r-- | Cargo.lock | 2 | ||||
-rw-r--r-- | Cargo.toml | 2 | ||||
-rw-r--r-- | guide/src/continuous-integration.md | 2 |
4 files changed, 27 insertions, 3 deletions
diff --git a/CHANGELOG.md b/CHANGELOG.md index 9b3b6a2d..20676ace 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,29 @@ # Changelog +## mdBook 0.4.16 +[68a5c09...a5fddfa](https://github.com/rust-lang/mdBook/compare/68a5c09...a5fddfa) + +### Added +- Added `output.html.print.page-break` config option to control whether or not + there is a page break between chapters in the print output. + [#1728](https://github.com/rust-lang/mdBook/pull/1728) +- Added `output.html.playground.runnable` config option to globally disable + the run button in code blocks. + [#1546](https://github.com/rust-lang/mdBook/pull/1546) + +### Changed +- The `cargo serve` live reload websocket now uses the protocol, host, and + port of the current page, allowing access through a proxy. + [#1771](https://github.com/rust-lang/mdBook/pull/1771) +- The 404 not-found page now includes the books title in the HTML title tag. + [#1693](https://github.com/rust-lang/mdBook/pull/1693) + +### Fixed +- Minor fixes to the markdown parser. + [#1729](https://github.com/rust-lang/mdBook/pull/1729) +- Fixed incorrect parsing in `SUMMARY.md` when it didn't start with a title. + [#1744](https://github.com/rust-lang/mdBook/pull/1744) + ## mdBook 0.4.15 [5eb7d46...68a5c09](https://github.com/rust-lang/mdBook/compare/5eb7d46...68a5c09) @@ -840,7 +840,7 @@ checksum = "a3e378b66a060d48947b590737b30a1be76706c8dd7b8ba0f2fe3989c68a853f" [[package]] name = "mdbook" -version = "0.4.15" +version = "0.4.16" dependencies = [ "ammonia", "anyhow", @@ -1,6 +1,6 @@ [package] name = "mdbook" -version = "0.4.15" +version = "0.4.16" authors = [ "Mathieu David <mathieudavid@mathieudavid.org>", "Michael-F-Bryan <michaelfbryan@gmail.com>", diff --git a/guide/src/continuous-integration.md b/guide/src/continuous-integration.md index 3503445f..c273c1aa 100644 --- a/guide/src/continuous-integration.md +++ b/guide/src/continuous-integration.md @@ -21,7 +21,7 @@ A simple approach would be to use the popular `curl` CLI tool to download the ex ```sh mkdir bin -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 +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 bin/mdbook build ``` |