diff --git a/CHANGELOG.md b/CHANGELOG.md index b25484fdb1..62526b8b7a 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,21 @@ # Changelog +## mdBook 0.4.32 +[v0.4.31...v0.4.32](https://github.com/rust-lang/mdBook/compare/v0.4.31...v0.4.32) + +### Fixed +- Fixed theme-color meta tag not syncing with the theme. + [#2118](https://github.com/rust-lang/mdBook/pull/2118) + +### Changed +- Updated all dependencies. + [#2121](https://github.com/rust-lang/mdBook/pull/2121) + [#2122](https://github.com/rust-lang/mdBook/pull/2122) + [#2123](https://github.com/rust-lang/mdBook/pull/2123) + [#2124](https://github.com/rust-lang/mdBook/pull/2124) + [#2125](https://github.com/rust-lang/mdBook/pull/2125) + [#2126](https://github.com/rust-lang/mdBook/pull/2126) + ## mdBook 0.4.31 [v0.4.30...v0.4.31](https://github.com/rust-lang/mdBook/compare/v0.4.30...v0.4.31) diff --git a/Cargo.lock b/Cargo.lock index 37dc6ad469..3ae309cd2e 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -977,7 +977,7 @@ dependencies = [ [[package]] name = "mdbook" -version = "0.4.31" +version = "0.4.32" dependencies = [ "ammonia", "anyhow", diff --git a/Cargo.toml b/Cargo.toml index 7e2f5a3a2a..748861503b 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "mdbook" -version = "0.4.31" +version = "0.4.32" authors = [ "Mathieu David ", "Michael-F-Bryan ", diff --git a/guide/src/continuous-integration.md b/guide/src/continuous-integration.md index c1893bfb49..abed0da6a9 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.31/mdbook-v0.4.31-x86_64-unknown-linux-gnu.tar.gz | tar -xz --directory=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 bin/mdbook build ```