Skip to content

Commit 3e311dc

Browse files
authored
Merge pull request #1838 from ehuss/bump-version
Update to 0.4.19
2 parents eb82ddc + 04e31eb commit 3e311dc

File tree

3 files changed

+30
-2
lines changed

3 files changed

+30
-2
lines changed

CHANGELOG.md

Lines changed: 28 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,33 @@
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

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "mdbook"
3-
version = "0.4.18"
3+
version = "0.4.19"
44
authors = [
55
"Mathieu David <[email protected]>",
66
"Michael-F-Bryan <[email protected]>",

guide/src/continuous-integration.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff 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
2323
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
2525
bin/mdbook build
2626
```
2727

0 commit comments

Comments
 (0)