diff --git a/CHANGELOG.md b/CHANGELOG.md index 4cf4787b..c4d613e6 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,23 @@ # Changelog +## mdBook 0.4.8 +[fcceee4...b592b10](https://github.com/rust-lang/mdBook/compare/fcceee4...b592b10) + +### Added +- Added the option `output.html.edit-url-template` which can be a URL which is + linked on each page to direct the user to a site (such as GitHub) where the + user can directly suggest an edit for the page they are currently reading. + [#1506](https://github.com/rust-lang/mdBook/pull/1506) + +### Changed +- Printed output now includes a page break between chapters. + [#1485](https://github.com/rust-lang/mdBook/pull/1485) + +### Fixed +- HTML, such as HTML comments, is now ignored if it appears above the title line + in `SUMMARY.md`. + [#1437](https://github.com/rust-lang/mdBook/pull/1437) + ## mdBook 0.4.7 [9a9eb01...c83bbd6](https://github.com/rust-lang/mdBook/compare/9a9eb01...c83bbd6) diff --git a/Cargo.lock b/Cargo.lock index d23a2097..a95703ea 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -723,7 +723,7 @@ checksum = "7ffc5c5338469d4d3ea17d269fa8ea3512ad247247c30bd2df69e68309ed0a08" [[package]] name = "mdbook" -version = "0.4.7" +version = "0.4.8" dependencies = [ "ammonia", "anyhow", diff --git a/Cargo.toml b/Cargo.toml index 6f5b364c..c377f937 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "mdbook" -version = "0.4.7" +version = "0.4.8" authors = [ "Mathieu David ", "Michael-F-Bryan ",