Update to 0.4.19
This commit is contained in:
parent
eb82ddca0b
commit
04e31eb07b
28
CHANGELOG.md
28
CHANGELOG.md
|
@ -1,5 +1,33 @@
|
||||||
# Changelog
|
# Changelog
|
||||||
|
|
||||||
|
## mdBook 0.4.19
|
||||||
|
[ae275ad...eb82ddc](https://github.com/rust-lang/mdBook/compare/ae275ad...eb82ddc)
|
||||||
|
|
||||||
|
### Added
|
||||||
|
- The `serve` command now supports HEAD requests.
|
||||||
|
[#1825](https://github.com/rust-lang/mdBook/pull/1825)
|
||||||
|
|
||||||
|
### Changed
|
||||||
|
- An error is now generated when a custom theme directory does not exist.
|
||||||
|
[#1791](https://github.com/rust-lang/mdBook/pull/1791)
|
||||||
|
- Very wide tables now have independent horizontal scrolling so that scrolling
|
||||||
|
to see the rest of the table will not scroll the entire page.
|
||||||
|
[#1617](https://github.com/rust-lang/mdBook/pull/1617)
|
||||||
|
- The buttons on code blocks are now only shown when the mouse cursor hovers
|
||||||
|
over them (or tapped on mobile). There is also some extra spacing to reduce
|
||||||
|
the overlap with the code.
|
||||||
|
[#1806](https://github.com/rust-lang/mdBook/pull/1806)
|
||||||
|
- The first chapter always generates an `index.html` file. Previously it would
|
||||||
|
only generate the index file for prefix chapters.
|
||||||
|
[#1829](https://github.com/rust-lang/mdBook/pull/1829)
|
||||||
|
|
||||||
|
### Fixed
|
||||||
|
- `mdbook serve --open` now properly handles the case if the first chapter is a draft.
|
||||||
|
[#1714](https://github.com/rust-lang/mdBook/pull/1714)
|
||||||
|
[#1830](https://github.com/rust-lang/mdBook/pull/1830)
|
||||||
|
- Very long words (over 80 characters) are no longer indexed to avoid a stack overflow.
|
||||||
|
[#1833](https://github.com/rust-lang/mdBook/pull/1833)
|
||||||
|
|
||||||
## mdBook 0.4.18
|
## mdBook 0.4.18
|
||||||
[981b79b...ae275ad](https://github.com/rust-lang/mdBook/compare/981b79b...ae275ad)
|
[981b79b...ae275ad](https://github.com/rust-lang/mdBook/compare/981b79b...ae275ad)
|
||||||
|
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
[package]
|
[package]
|
||||||
name = "mdbook"
|
name = "mdbook"
|
||||||
version = "0.4.18"
|
version = "0.4.19"
|
||||||
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.18/mdbook-v0.4.18-x86_64-unknown-linux-gnu.tar.gz | tar -xz --directory=bin
|
curl -sSL https://github.com/rust-lang/mdBook/releases/download/v0.4.19/mdbook-v0.4.19-x86_64-unknown-linux-gnu.tar.gz | tar -xz --directory=bin
|
||||||
bin/mdbook build
|
bin/mdbook build
|
||||||
```
|
```
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue