File tree Expand file tree Collapse file tree 3 files changed +30
-2
lines changed Expand file tree Collapse file tree 3 files changed +30
-2
lines changed Original file line number Diff line number Diff line change 11# Changelog
22
3+ ## mdBook 0.4.19
4+ [ ae275ad...eb82ddc] ( https://github.com/rust-lang/mdBook/compare/ae275ad...eb82ddc )
5+
6+ ### Added
7+ - The ` serve ` command now supports HEAD requests.
8+ [ #1825 ] ( https://github.com/rust-lang/mdBook/pull/1825 )
9+
10+ ### Changed
11+ - An error is now generated when a custom theme directory does not exist.
12+ [ #1791 ] ( https://github.com/rust-lang/mdBook/pull/1791 )
13+ - Very wide tables now have independent horizontal scrolling so that scrolling
14+ to see the rest of the table will not scroll the entire page.
15+ [ #1617 ] ( https://github.com/rust-lang/mdBook/pull/1617 )
16+ - The buttons on code blocks are now only shown when the mouse cursor hovers
17+ over them (or tapped on mobile). There is also some extra spacing to reduce
18+ the overlap with the code.
19+ [ #1806 ] ( https://github.com/rust-lang/mdBook/pull/1806 )
20+ - The first chapter always generates an ` index.html ` file. Previously it would
21+ only generate the index file for prefix chapters.
22+ [ #1829 ] ( https://github.com/rust-lang/mdBook/pull/1829 )
23+
24+ ### Fixed
25+ - ` mdbook serve --open ` now properly handles the case if the first chapter is a draft.
26+ [ #1714 ] ( https://github.com/rust-lang/mdBook/pull/1714 )
27+ [ #1830 ] ( https://github.com/rust-lang/mdBook/pull/1830 )
28+ - Very long words (over 80 characters) are no longer indexed to avoid a stack overflow.
29+ [ #1833 ] ( https://github.com/rust-lang/mdBook/pull/1833 )
30+
331## mdBook 0.4.18
432[ 981b79b...ae275ad] ( https://github.com/rust-lang/mdBook/compare/981b79b...ae275ad )
533
Original file line number Diff line number Diff line change 11[package ]
22name = " mdbook"
3- version = " 0.4.18 "
3+ version = " 0.4.19 "
44authors = [
55 " Mathieu David <mathieudavid@mathieudavid.org>" ,
66 " Michael-F-Bryan <michaelfbryan@gmail.com>" ,
Original file line number Diff line number Diff line change @@ -21,7 +21,7 @@ A simple approach would be to use the popular `curl` CLI tool to download the ex
2121
2222``` sh
2323mkdir bin
24- 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
24+ 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
2525bin/mdbook build
2626```
2727
You can’t perform that action at this time.
0 commit comments