From 1cd1151790bdf0ea6e876d9faba8c19941112e3d Mon Sep 17 00:00:00 2001 From: Eric Huss Date: Tue, 18 Jun 2019 15:24:26 -0700 Subject: [PATCH] Release 0.3.0 --- CHANGELOG.md | 7 +++++-- Cargo.lock | 2 +- Cargo.toml | 2 +- book-example/src/continuous-integration.md | 4 ++-- 4 files changed, 9 insertions(+), 6 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 9b3999eb..fd18a4ac 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,7 +1,7 @@ # Changelog -## mdBook 0.2.4-alpha -[6cbc41d...HEAD](https://github.com/rust-lang-nursery/mdBook/compare/6cbc41d...HEAD) +## mdBook 0.3.0 +[6cbc41d...84d4063](https://github.com/rust-lang-nursery/mdBook/compare/6cbc41d...84d4063) ### Added - Added ability to resize the sidebar. @@ -41,6 +41,9 @@ [#943](https://github.com/rust-lang-nursery/mdBook/pull/943) - Make the blank region of a header not clickable. [#948](https://github.com/rust-lang-nursery/mdBook/pull/948) +- Rustdoc tests now use the preprocessed content instead of the raw, + unpreprocessed content. + [#891](https://github.com/rust-lang-nursery/mdBook/pull/891) ### Fixed - Fixed file change detection so that `mdbook serve` only reloads once when diff --git a/Cargo.lock b/Cargo.lock index e26997e7..01a15fcb 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -624,7 +624,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" [[package]] name = "mdbook" -version = "0.2.4-alpha.0" +version = "0.3.0" dependencies = [ "ammonia 2.1.1 (registry+https://github.com/rust-lang/crates.io-index)", "chrono 0.4.6 (registry+https://github.com/rust-lang/crates.io-index)", diff --git a/Cargo.toml b/Cargo.toml index 9750d70b..a75c47dd 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "mdbook" -version = "0.2.4-alpha.0" +version = "0.3.0" authors = [ "Mathieu David ", "Michael-F-Bryan ", diff --git a/book-example/src/continuous-integration.md b/book-example/src/continuous-integration.md index 4c4a7147..50a92af0 100644 --- a/book-example/src/continuous-integration.md +++ b/book-example/src/continuous-integration.md @@ -22,7 +22,7 @@ rust: before_script: - (test -x $HOME/.cargo/bin/cargo-install-update || cargo install cargo-update) - - (test -x $HOME/.cargo/bin/mdbook || cargo install --vers "^0.2" mdbook) + - (test -x $HOME/.cargo/bin/mdbook || cargo install --vers "^0.3" mdbook) - cargo install-update -a script: @@ -58,7 +58,7 @@ That's it! ### Deploying to GitHub Pages manually If your CI doesn't support GitHub pages, or you're deploying somewhere else -with integrations such as Github Pages: +with integrations such as Github Pages: *note: you may want to use different tmp dirs*: ```console