commit
69a08ef390
|
@ -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
|
||||||
|
|
|
@ -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)",
|
||||||
|
|
|
@ -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>",
|
||||||
|
|
|
@ -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:
|
||||||
|
|
Loading…
Reference in New Issue