Update to 0.4.27
This commit is contained in:
parent
1517435441
commit
6e3176f726
|
@ -1,8 +1,17 @@
|
||||||
# Changelog
|
# Changelog
|
||||||
|
|
||||||
|
## mdBook 0.4.27
|
||||||
|
[v0.4.26...v0.4.27](https://github.com/rust-lang/mdBook/compare/v0.4.26...v0.4.27)
|
||||||
|
|
||||||
|
### Changed
|
||||||
|
- Reverted the dependency update to the `toml` crate. This was an unintentional breaking change in 0.4.26.
|
||||||
|
[#2021](https://github.com/rust-lang/mdBook/pull/2021)
|
||||||
|
|
||||||
## mdBook 0.4.26
|
## mdBook 0.4.26
|
||||||
[v0.4.25...v0.4.26](https://github.com/rust-lang/mdBook/compare/v0.4.25...v0.4.26)
|
[v0.4.25...v0.4.26](https://github.com/rust-lang/mdBook/compare/v0.4.25...v0.4.26)
|
||||||
|
|
||||||
|
**The 0.4.26 release has been yanked due to an unintentional breaking change.**
|
||||||
|
|
||||||
### Changed
|
### Changed
|
||||||
- Removed custom scrollbars for webkit browsers
|
- Removed custom scrollbars for webkit browsers
|
||||||
[#1961](https://github.com/rust-lang/mdBook/pull/1961)
|
[#1961](https://github.com/rust-lang/mdBook/pull/1961)
|
||||||
|
|
|
@ -903,7 +903,7 @@ dependencies = [
|
||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
name = "mdbook"
|
name = "mdbook"
|
||||||
version = "0.4.26"
|
version = "0.4.27"
|
||||||
dependencies = [
|
dependencies = [
|
||||||
"ammonia",
|
"ammonia",
|
||||||
"anyhow",
|
"anyhow",
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
[package]
|
[package]
|
||||||
name = "mdbook"
|
name = "mdbook"
|
||||||
version = "0.4.26"
|
version = "0.4.27"
|
||||||
authors = [
|
authors = [
|
||||||
"Mathieu David <mathieudavid@mathieudavid.org>",
|
"Mathieu David <mathieudavid@mathieudavid.org>",
|
||||||
"Michael-F-Bryan <michaelfbryan@gmail.com>",
|
"Michael-F-Bryan <michaelfbryan@gmail.com>",
|
||||||
|
|
|
@ -21,7 +21,7 @@ A simple approach would be to use the popular `curl` CLI tool to download the ex
|
||||||
|
|
||||||
```sh
|
```sh
|
||||||
mkdir bin
|
mkdir bin
|
||||||
curl -sSL https://github.com/rust-lang/mdBook/releases/download/v0.4.26/mdbook-v0.4.26-x86_64-unknown-linux-gnu.tar.gz | tar -xz --directory=bin
|
curl -sSL https://github.com/rust-lang/mdBook/releases/download/v0.4.27/mdbook-v0.4.27-x86_64-unknown-linux-gnu.tar.gz | tar -xz --directory=bin
|
||||||
bin/mdbook build
|
bin/mdbook build
|
||||||
```
|
```
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue