File tree 3 files changed +30
-2
lines changed
3 files changed +30
-2
lines changed Original file line number Diff line number Diff line change 1
1
# Changelog
2
2
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
+
3
31
## mdBook 0.4.18
4
32
[ 981b79b...ae275ad] ( https://github.com/rust-lang/mdBook/compare/981b79b...ae275ad )
5
33
Original file line number Diff line number Diff line change 1
1
[package ]
2
2
name = " mdbook"
3
- version = " 0.4.18 "
3
+ version = " 0.4.19 "
4
4
authors = [
5
5
" Mathieu David <[email protected] >" ,
6
6
" Michael-F-Bryan <[email protected] >" ,
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
21
21
22
22
``` sh
23
23
mkdir 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
25
25
bin/mdbook build
26
26
```
27
27
You can’t perform that action at this time.
0 commit comments