Update to 0.4.9
This commit is contained in:
parent
d325c601bb
commit
d0bb830491
20
CHANGELOG.md
20
CHANGELOG.md
|
@ -1,5 +1,25 @@
|
||||||
# Changelog
|
# Changelog
|
||||||
|
|
||||||
|
## mdBook 0.4.9
|
||||||
|
[7e01cf9...d325c60](https://github.com/rust-lang/mdBook/compare/7e01cf9...d325c60)
|
||||||
|
|
||||||
|
### Changed
|
||||||
|
- Updated all dependencies and raised the minimum Rust version to 1.42.
|
||||||
|
[#1528](https://github.com/rust-lang/mdBook/pull/1528)
|
||||||
|
- Added more detail to error message when a preprocessor fails.
|
||||||
|
[#1526](https://github.com/rust-lang/mdBook/pull/1526)
|
||||||
|
- Set max-width of HTML video tags to 100% to match img tags.
|
||||||
|
[#1542](https://github.com/rust-lang/mdBook/pull/1542)
|
||||||
|
|
||||||
|
### Fixed
|
||||||
|
- Type errors when parsing `book.toml` are no longer ignored.
|
||||||
|
[#1539](https://github.com/rust-lang/mdBook/pull/1539)
|
||||||
|
- Better handling if `mdbook serve` fails to start the http server.
|
||||||
|
[#1555](https://github.com/rust-lang/mdBook/pull/1555)
|
||||||
|
- Fixed the path for `edit-url-template` if the book used a source directory
|
||||||
|
other than `src`.
|
||||||
|
[#1554](https://github.com/rust-lang/mdBook/pull/1554)
|
||||||
|
|
||||||
## mdBook 0.4.8
|
## mdBook 0.4.8
|
||||||
[fcceee4...b592b10](https://github.com/rust-lang/mdBook/compare/fcceee4...b592b10)
|
[fcceee4...b592b10](https://github.com/rust-lang/mdBook/compare/fcceee4...b592b10)
|
||||||
|
|
||||||
|
|
|
@ -800,7 +800,7 @@ checksum = "7ffc5c5338469d4d3ea17d269fa8ea3512ad247247c30bd2df69e68309ed0a08"
|
||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
name = "mdbook"
|
name = "mdbook"
|
||||||
version = "0.4.8"
|
version = "0.4.9"
|
||||||
dependencies = [
|
dependencies = [
|
||||||
"ammonia",
|
"ammonia",
|
||||||
"anyhow",
|
"anyhow",
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
[package]
|
[package]
|
||||||
name = "mdbook"
|
name = "mdbook"
|
||||||
version = "0.4.8"
|
version = "0.4.9"
|
||||||
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