diff --git a/CHANGELOG.md b/CHANGELOG.md index b4115864ef..209e9fb0dc 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,23 @@ # Changelog +## mdBook 0.4.13 +[e6629cd...f55028b](https://github.com/rust-lang/mdBook/compare/e6629cd...f55028b) + +### Added + +- Added the ability to specify the preprocessor order. + [#1607](https://github.com/rust-lang/mdBook/pull/1607) + +### Fixed + +- Include chapters with no headers in the search index + [#1637](https://github.com/rust-lang/mdBook/pull/1637) +- Switched to the `opener` crate for opening a web browser, which should fix + some issues with blocking. + [#1656](https://github.com/rust-lang/mdBook/pull/1656) +- Fixed clicking the border of the theme switcher breaking the theme selection. + [#1651](https://github.com/rust-lang/mdBook/pull/1651) + ## mdBook 0.4.12 [14add9c...8b4e488](https://github.com/rust-lang/mdBook/compare/14add9c...8b4e488) diff --git a/Cargo.lock b/Cargo.lock index fc0459db3a..3f6c5e12ba 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -839,7 +839,7 @@ checksum = "a3e378b66a060d48947b590737b30a1be76706c8dd7b8ba0f2fe3989c68a853f" [[package]] name = "mdbook" -version = "0.4.12" +version = "0.4.13" dependencies = [ "ammonia", "anyhow", diff --git a/Cargo.toml b/Cargo.toml index a6ab6c8602..dd0b17bdf7 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "mdbook" -version = "0.4.12" +version = "0.4.13" authors = [ "Mathieu David ", "Michael-F-Bryan ",