diff --git a/CHANGELOG.md b/CHANGELOG.md index 62526b8b7a..fdfa089d31 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,22 @@ # Changelog +## mdBook 0.4.33 +[v0.4.32...v0.4.33](https://github.com/rust-lang/mdBook/compare/v0.4.32...v0.4.33) + +### Added +- The `color-scheme` CSS property is now set based on the light/dark theme, which applies some slight color differences in browser elements like scroll bars on some browsers. + [#2134](https://github.com/rust-lang/mdBook/pull/2134) + +### Fixed +- Fixed watching of extra-watch-dirs when not running in the book root directory. + [#2146](https://github.com/rust-lang/mdBook/pull/2146) +- Reverted the dependency update to the `toml` crate (again!). This was an unintentional breaking change in 0.4.32. + [#2021](https://github.com/rust-lang/mdBook/pull/2021) +- Changed macOS change notifications to use the kqueue implementation which should fix some issues with repeated rebuilds when a file changed. + [#2152](https://github.com/rust-lang/mdBook/pull/2152) +- Don't set a background color in the print page for code blocks in a header. + [#2150](https://github.com/rust-lang/mdBook/pull/2150) + ## mdBook 0.4.32 [v0.4.31...v0.4.32](https://github.com/rust-lang/mdBook/compare/v0.4.31...v0.4.32) diff --git a/Cargo.lock b/Cargo.lock index f83df8bd09..73a9d6452b 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -955,7 +955,7 @@ dependencies = [ [[package]] name = "mdbook" -version = "0.4.32" +version = "0.4.33" dependencies = [ "ammonia", "anyhow", diff --git a/Cargo.toml b/Cargo.toml index 906d130838..92e50017f5 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "mdbook" -version = "0.4.32" +version = "0.4.33" authors = [ "Mathieu David ", "Michael-F-Bryan ", diff --git a/guide/src/continuous-integration.md b/guide/src/continuous-integration.md index abed0da6a9..c6ef820bec 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.32/mdbook-v0.4.32-x86_64-unknown-linux-gnu.tar.gz | tar -xz --directory=bin +curl -sSL https://github.com/rust-lang/mdBook/releases/download/v0.4.33/mdbook-v0.4.33-x86_64-unknown-linux-gnu.tar.gz | tar -xz --directory=bin bin/mdbook build ```