Update to 0.4.14
This commit is contained in:
parent
c9b6be8660
commit
dffcedf031
22
CHANGELOG.md
22
CHANGELOG.md
|
@ -1,5 +1,27 @@
|
||||||
# Changelog
|
# Changelog
|
||||||
|
|
||||||
|
## mdBook 0.4.14
|
||||||
|
[ffa8284...c9b6be8](https://github.com/rust-lang/mdBook/compare/ffa8284...c9b6be8)
|
||||||
|
|
||||||
|
### Added
|
||||||
|
- The 2021 Rust edition option has been stabilized.
|
||||||
|
[#1642](https://github.com/rust-lang/mdBook/pull/1642)
|
||||||
|
|
||||||
|
### Changed
|
||||||
|
- Header anchors no longer include any HTML tags. Previously only a small
|
||||||
|
subset were excluded.
|
||||||
|
[#1683](https://github.com/rust-lang/mdBook/pull/1683)
|
||||||
|
- Deprecated the google-analytics option. Books using this option should place
|
||||||
|
the appropriate code in the `theme/head.hbs` file instead.
|
||||||
|
[#1675](https://github.com/rust-lang/mdBook/pull/1675)
|
||||||
|
|
||||||
|
### Fixed
|
||||||
|
- Updated the markdown parser which brings in a few small fixes and removes
|
||||||
|
the custom smart quote handling.
|
||||||
|
[#1668](https://github.com/rust-lang/mdBook/pull/1668)
|
||||||
|
- Fixed iOS Safari enlarging text when going into landscape mode.
|
||||||
|
[#1685](https://github.com/rust-lang/mdBook/pull/1685)
|
||||||
|
|
||||||
## mdBook 0.4.13
|
## mdBook 0.4.13
|
||||||
[e6629cd...f55028b](https://github.com/rust-lang/mdBook/compare/e6629cd...f55028b)
|
[e6629cd...f55028b](https://github.com/rust-lang/mdBook/compare/e6629cd...f55028b)
|
||||||
|
|
||||||
|
|
|
@ -839,7 +839,7 @@ checksum = "a3e378b66a060d48947b590737b30a1be76706c8dd7b8ba0f2fe3989c68a853f"
|
||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
name = "mdbook"
|
name = "mdbook"
|
||||||
version = "0.4.13"
|
version = "0.4.14"
|
||||||
dependencies = [
|
dependencies = [
|
||||||
"ammonia",
|
"ammonia",
|
||||||
"anyhow",
|
"anyhow",
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
[package]
|
[package]
|
||||||
name = "mdbook"
|
name = "mdbook"
|
||||||
version = "0.4.13"
|
version = "0.4.14"
|
||||||
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