Update to 0.4.26
This commit is contained in:
parent
e352e4f59c
commit
ab1e9694bc
19
CHANGELOG.md
19
CHANGELOG.md
|
@ -1,5 +1,24 @@
|
||||||
# Changelog
|
# Changelog
|
||||||
|
|
||||||
|
## mdBook 0.4.26
|
||||||
|
[v0.4.25...v0.4.26](https://github.com/rust-lang/mdBook/compare/v0.4.25...v0.4.26)
|
||||||
|
|
||||||
|
### Changed
|
||||||
|
- Removed custom scrollbars for webkit browsers
|
||||||
|
[#1961](https://github.com/rust-lang/mdBook/pull/1961)
|
||||||
|
- Updated some dependencies
|
||||||
|
[#1998](https://github.com/rust-lang/mdBook/pull/1998)
|
||||||
|
[#2009](https://github.com/rust-lang/mdBook/pull/2009)
|
||||||
|
[#2011](https://github.com/rust-lang/mdBook/pull/2011)
|
||||||
|
- Fonts are now part of the theme.
|
||||||
|
The `output.html.copy-fonts` option has been deprecated.
|
||||||
|
To define custom fonts, be sure to define `theme/fonts.css`.
|
||||||
|
[#1987](https://github.com/rust-lang/mdBook/pull/1987)
|
||||||
|
|
||||||
|
### Fixed
|
||||||
|
- Fixed overflow viewport issue with mobile Safari
|
||||||
|
[#1994](https://github.com/rust-lang/mdBook/pull/1994)
|
||||||
|
|
||||||
## mdBook 0.4.25
|
## mdBook 0.4.25
|
||||||
[e14d381...1ba74a3](https://github.com/rust-lang/mdBook/compare/e14d381...1ba74a3)
|
[e14d381...1ba74a3](https://github.com/rust-lang/mdBook/compare/e14d381...1ba74a3)
|
||||||
|
|
||||||
|
|
|
@ -920,7 +920,7 @@ dependencies = [
|
||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
name = "mdbook"
|
name = "mdbook"
|
||||||
version = "0.4.25"
|
version = "0.4.26"
|
||||||
dependencies = [
|
dependencies = [
|
||||||
"ammonia",
|
"ammonia",
|
||||||
"anyhow",
|
"anyhow",
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
[package]
|
[package]
|
||||||
name = "mdbook"
|
name = "mdbook"
|
||||||
version = "0.4.25"
|
version = "0.4.26"
|
||||||
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.25/mdbook-v0.4.25-x86_64-unknown-linux-gnu.tar.gz | tar -xz --directory=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
|
||||||
bin/mdbook build
|
bin/mdbook build
|
||||||
```
|
```
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue