summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorEric Huss <eric@huss.org>2021-07-26 13:47:37 -0700
committerGitHub <noreply@github.com>2021-07-26 13:47:37 -0700
commit14add9c29006c7ad05a7b5c0a1181d406f14329b (patch)
tree37bb4c9b798bdeaad7cede5a9f5afa0abd741c29
parent2cf00d0880de14bff396c7769bfe3326653b5ee6 (diff)
parent87877a9daeb7a266e2cab16a10c9191f81ab6625 (diff)
Merge pull request #1615 from ehuss/release-nextv0.4.11
Update to 0.4.11
-rw-r--r--CHANGELOG.md30
-rw-r--r--Cargo.lock2
-rw-r--r--Cargo.toml2
3 files changed, 32 insertions, 2 deletions
diff --git a/CHANGELOG.md b/CHANGELOG.md
index e6226ba8..e6021f29 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -1,5 +1,35 @@
# Changelog
+## mdBook 0.4.11
+[e440094...2cf00d0](https://github.com/rust-lang/mdBook/compare/e440094...2cf00d0)
+
+### Added
+- Added support for Rust 2021 edition.
+ [#1596](https://github.com/rust-lang/mdBook/pull/1596)
+- Added `mdbook completions` subcommand which provides shell completions.
+ [#1425](https://github.com/rust-lang/mdBook/pull/1425)
+- Added `--title` and `--ignore` flags to `mdbook init` to avoid the
+ interactive input.
+ [#1559](https://github.com/rust-lang/mdBook/pull/1559)
+
+### Changed
+- If running a Rust example does not have any output, it now displays the text
+ "No output" instead of not showing anything.
+ [#1599](https://github.com/rust-lang/mdBook/pull/1599)
+- Code block language tags can now be separated by space or tab (along with
+ commas) to match the behavior of other sites like GitHub and rustdoc.
+ [#1469](https://github.com/rust-lang/mdBook/pull/1469)
+- Updated `warp` (the web server) to the latest version.
+ This also updates the minimum supported Rust version to 1.46.
+ [#1612](https://github.com/rust-lang/mdBook/pull/1612)
+- Updated to highlight.js 11. This has various highlighting improvements.
+ [#1597](https://github.com/rust-lang/mdBook/pull/1597)
+
+### Fixed
+- Inline code blocks inside a header are no longer highlighted when
+ `output.html.playground.editable` is `true`.
+ [#1613](https://github.com/rust-lang/mdBook/pull/1613)
+
## mdBook 0.4.10
[2f7293a...dc2062a](https://github.com/rust-lang/mdBook/compare/2f7293a...dc2062a)
diff --git a/Cargo.lock b/Cargo.lock
index ec790113..b3009447 100644
--- a/Cargo.lock
+++ b/Cargo.lock
@@ -780,7 +780,7 @@ checksum = "7ffc5c5338469d4d3ea17d269fa8ea3512ad247247c30bd2df69e68309ed0a08"
[[package]]
name = "mdbook"
-version = "0.4.10"
+version = "0.4.11"
dependencies = [
"ammonia",
"anyhow",
diff --git a/Cargo.toml b/Cargo.toml
index 9c243145..73ec2887 100644
--- a/Cargo.toml
+++ b/Cargo.toml
@@ -1,6 +1,6 @@
[package]
name = "mdbook"
-version = "0.4.10"
+version = "0.4.11"
authors = [
"Mathieu David <mathieudavid@mathieudavid.org>",
"Michael-F-Bryan <michaelfbryan@gmail.com>",