Merge pull request #956 from ehuss/rel-0.3.0

Release 0.3.0
This commit is contained in:
Eric Huss 2019-06-18 16:02:43 -07:00 committed by GitHub
commit 69a08ef390
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
4 changed files with 9 additions and 6 deletions

View File

@ -1,7 +1,7 @@
# Changelog # Changelog
## mdBook 0.2.4-alpha ## mdBook 0.3.0
[6cbc41d...HEAD](https://github.com/rust-lang-nursery/mdBook/compare/6cbc41d...HEAD) [6cbc41d...84d4063](https://github.com/rust-lang-nursery/mdBook/compare/6cbc41d...84d4063)
### Added ### Added
- Added ability to resize the sidebar. - Added ability to resize the sidebar.
@ -41,6 +41,9 @@
[#943](https://github.com/rust-lang-nursery/mdBook/pull/943) [#943](https://github.com/rust-lang-nursery/mdBook/pull/943)
- Make the blank region of a header not clickable. - Make the blank region of a header not clickable.
[#948](https://github.com/rust-lang-nursery/mdBook/pull/948) [#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
- Fixed file change detection so that `mdbook serve` only reloads once when - Fixed file change detection so that `mdbook serve` only reloads once when

2
Cargo.lock generated
View File

@ -624,7 +624,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
[[package]] [[package]]
name = "mdbook" name = "mdbook"
version = "0.2.4-alpha.0" version = "0.3.0"
dependencies = [ dependencies = [
"ammonia 2.1.1 (registry+https://github.com/rust-lang/crates.io-index)", "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)", "chrono 0.4.6 (registry+https://github.com/rust-lang/crates.io-index)",

View File

@ -1,6 +1,6 @@
[package] [package]
name = "mdbook" name = "mdbook"
version = "0.2.4-alpha.0" version = "0.3.0"
authors = [ authors = [
"Mathieu David <mathieudavid@mathieudavid.org>", "Mathieu David <mathieudavid@mathieudavid.org>",
"Michael-F-Bryan <michaelfbryan@gmail.com>", "Michael-F-Bryan <michaelfbryan@gmail.com>",

View File

@ -22,7 +22,7 @@ rust:
before_script: before_script:
- (test -x $HOME/.cargo/bin/cargo-install-update || cargo install cargo-update) - (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 - cargo install-update -a
script: script:
@ -58,7 +58,7 @@ That's it!
### Deploying to GitHub Pages manually ### Deploying to GitHub Pages manually
If your CI doesn't support GitHub pages, or you're deploying somewhere else 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*: *note: you may want to use different tmp dirs*:
```console ```console