diff --git a/CHANGELOG.md b/CHANGELOG.md index 5f691e57..e5c0ddd1 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,18 @@ # Changelog +## mdBook 0.3.5 +[6e0d0fa...efdb832](https://github.com/rust-lang/mdBook/compare/6e0d0fa...efdb832) + +### Changed +- The `default-theme` config setting is now case-insensitive. + [#1079](https://github.com/rust-lang/mdBook/pull/1079) + +### Fixed +- Fixed `#` hidden Rust code lines not rendering properly. + [#1088](https://github.com/rust-lang/mdBook/pull/1088) +- Updated pulldown-cmark to 0.6.1, fixing several issues. + [#1021](https://github.com/rust-lang/mdBook/pull/1021) + ## mdBook 0.3.4 [e5f77aa...6e0d0fa](https://github.com/rust-lang/mdBook/compare/e5f77aa...6e0d0fa) diff --git a/Cargo.lock b/Cargo.lock index 58769a68..64901732 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -675,7 +675,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" [[package]] name = "mdbook" -version = "0.3.4" +version = "0.3.5" dependencies = [ "ammonia 3.0.0 (registry+https://github.com/rust-lang/crates.io-index)", "chrono 0.4.9 (registry+https://github.com/rust-lang/crates.io-index)", diff --git a/Cargo.toml b/Cargo.toml index 373c9df7..55fde044 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "mdbook" -version = "0.3.4" +version = "0.3.5" authors = [ "Mathieu David ", "Michael-F-Bryan ",