diff --git a/CHANGELOG.md b/CHANGELOG.md index 5089b629d3..2318f1250e 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,18 @@ # Changelog +## mdBook 0.4.28 +[v0.4.27...v0.4.28](https://github.com/rust-lang/mdBook/compare/v0.4.27...v0.4.28) + +### Changed +- The sidebar is now shown on wide screens when localstorage is disabled. + [#2017](https://github.com/rust-lang/mdBook/pull/2017) +- Preprocessors are now run with `mdbook test`. + [#1986](https://github.com/rust-lang/mdBook/pull/1986) + +### Fixed +- Fixed regression in 0.4.26 that prevented the title bar from scrolling properly on smaller screens. + [#2039](https://github.com/rust-lang/mdBook/pull/2039) + ## mdBook 0.4.27 [v0.4.26...v0.4.27](https://github.com/rust-lang/mdBook/compare/v0.4.26...v0.4.27) diff --git a/Cargo.lock b/Cargo.lock index 551959b5fa..9b05b697e0 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -903,7 +903,7 @@ dependencies = [ [[package]] name = "mdbook" -version = "0.4.27" +version = "0.4.28" dependencies = [ "ammonia", "anyhow", diff --git a/Cargo.toml b/Cargo.toml index 61c8ba70a9..ab3eae1f6d 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "mdbook" -version = "0.4.27" +version = "0.4.28" authors = [ "Mathieu David ", "Michael-F-Bryan ", diff --git a/guide/src/continuous-integration.md b/guide/src/continuous-integration.md index 0e7e52a72e..a401221f6a 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.27/mdbook-v0.4.27-x86_64-unknown-linux-gnu.tar.gz | tar -xz --directory=bin +curl -sSL https://github.com/rust-lang/mdBook/releases/download/v0.4.28/mdbook-v0.4.28-x86_64-unknown-linux-gnu.tar.gz | tar -xz --directory=bin bin/mdbook build ```