From 04e31eb07b4b4f73ee9cdb9abfe594edbc619856 Mon Sep 17 00:00:00 2001 From: Eric Huss Date: Tue, 28 Jun 2022 13:38:45 -0700 Subject: [PATCH] Update to 0.4.19 --- CHANGELOG.md | 28 ++++++++++++++++++++++++++++ Cargo.toml | 2 +- guide/src/continuous-integration.md | 2 +- 3 files changed, 30 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 1394381c..bde70437 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,33 @@ # 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 [981b79b...ae275ad](https://github.com/rust-lang/mdBook/compare/981b79b...ae275ad) diff --git a/Cargo.toml b/Cargo.toml index 0b54b5ab..f1333c85 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "mdbook" -version = "0.4.18" +version = "0.4.19" authors = [ "Mathieu David ", "Michael-F-Bryan ", diff --git a/guide/src/continuous-integration.md b/guide/src/continuous-integration.md index 24a9fd24..60e6ae75 100644 --- a/guide/src/continuous-integration.md +++ b/guide/src/continuous-integration.md @@ -21,7 +21,7 @@ A simple approach would be to use the popular `curl` CLI tool to download the ex ```sh 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 ```