diff --git a/CHANGELOG.md b/CHANGELOG.md index 8947a6d4..fd7093d5 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,12 @@ # Changelog +## mdBook 0.4.25 +[e14d381...1ba74a3](https://github.com/rust-lang/mdBook/compare/e14d381...1ba74a3) + +### Fixed +- Fixed a regression where `mdbook test -L deps path-to-book` would not work. + [#1959](https://github.com/rust-lang/mdBook/pull/1959) + ## mdBook 0.4.24 [eb77083...8767ebf](https://github.com/rust-lang/mdBook/compare/eb77083...8767ebf) diff --git a/Cargo.lock b/Cargo.lock index ea16cddc..9767a38c 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -923,7 +923,7 @@ dependencies = [ [[package]] name = "mdbook" -version = "0.4.24" +version = "0.4.25" dependencies = [ "ammonia", "anyhow", diff --git a/Cargo.toml b/Cargo.toml index 31995efc..b7018d4c 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "mdbook" -version = "0.4.24" +version = "0.4.25" authors = [ "Mathieu David ", "Michael-F-Bryan ", diff --git a/guide/src/continuous-integration.md b/guide/src/continuous-integration.md index b3abcdf9..a0752a20 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.24/mdbook-v0.4.24-x86_64-unknown-linux-gnu.tar.gz | tar -xz --directory=bin +curl -sSL https://github.com/rust-lang/mdBook/releases/download/v0.4.25/mdbook-v0.4.25-x86_64-unknown-linux-gnu.tar.gz | tar -xz --directory=bin bin/mdbook build ```