summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorEric Huss <eric@huss.org>2022-03-29 17:45:05 -0700
committerGitHub <noreply@github.com>2022-03-29 17:45:05 -0700
commit720f502e9d3d018c795089e9ca95929ffaf9d19e (patch)
tree0eed7301a43b0dd99fef884de7aa344a28e48137
parenta5fddfa4683e45b1ab6d26629670acfcd5b4f18a (diff)
parentadf6129769588298b0e73dc7b2d891e0ec789093 (diff)
Merge pull request #1773 from ehuss/bump-versionv0.4.16
Update to 0.4.16
-rw-r--r--CHANGELOG.md24
-rw-r--r--Cargo.lock2
-rw-r--r--Cargo.toml2
-rw-r--r--guide/src/continuous-integration.md2
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)
diff --git a/Cargo.lock b/Cargo.lock
index f7833466..a8638e4c 100644
--- a/Cargo.lock
+++ b/Cargo.lock
@@ -840,7 +840,7 @@ checksum = "a3e378b66a060d48947b590737b30a1be76706c8dd7b8ba0f2fe3989c68a853f"
[[package]]
name = "mdbook"
-version = "0.4.15"
+version = "0.4.16"
dependencies = [
"ammonia",
"anyhow",
diff --git a/Cargo.toml b/Cargo.toml
index bf0cb286..44d90203 100644
--- a/Cargo.toml
+++ b/Cargo.toml
@@ -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
```