Update to 0.4.11
This commit is contained in:
parent
2cf00d0880
commit
87877a9dae
30
CHANGELOG.md
30
CHANGELOG.md
|
@ -1,5 +1,35 @@
|
||||||
# Changelog
|
# 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
|
## mdBook 0.4.10
|
||||||
[2f7293a...dc2062a](https://github.com/rust-lang/mdBook/compare/2f7293a...dc2062a)
|
[2f7293a...dc2062a](https://github.com/rust-lang/mdBook/compare/2f7293a...dc2062a)
|
||||||
|
|
||||||
|
|
|
@ -780,7 +780,7 @@ checksum = "7ffc5c5338469d4d3ea17d269fa8ea3512ad247247c30bd2df69e68309ed0a08"
|
||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
name = "mdbook"
|
name = "mdbook"
|
||||||
version = "0.4.10"
|
version = "0.4.11"
|
||||||
dependencies = [
|
dependencies = [
|
||||||
"ammonia",
|
"ammonia",
|
||||||
"anyhow",
|
"anyhow",
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
[package]
|
[package]
|
||||||
name = "mdbook"
|
name = "mdbook"
|
||||||
version = "0.4.10"
|
version = "0.4.11"
|
||||||
authors = [
|
authors = [
|
||||||
"Mathieu David <mathieudavid@mathieudavid.org>",
|
"Mathieu David <mathieudavid@mathieudavid.org>",
|
||||||
"Michael-F-Bryan <michaelfbryan@gmail.com>",
|
"Michael-F-Bryan <michaelfbryan@gmail.com>",
|
||||||
|
|
Loading…
Reference in New Issue