diff options
author | Eric Huss <eric@huss.org> | 2024-05-17 00:50:51 +0000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-05-17 00:50:51 +0000 |
commit | e34f9c640871190bbdc4c61d261a75a3d93b6bd1 (patch) | |
tree | c992776190ad43a59eb7b2fe608b1557a6a4a257 | |
parent | e0e13e375ecbd60159fc59179421c0d34e1a4ebb (diff) | |
parent | 4c333bee9511a8ea5cc204f4781e22737c1aede5 (diff) |
Merge pull request #2385 from ehuss/bump-versionv0.4.39
Update to 0.4.39
-rw-r--r-- | CHANGELOG.md | 8 | ||||
-rw-r--r-- | Cargo.lock | 2 | ||||
-rw-r--r-- | Cargo.toml | 2 | ||||
-rw-r--r-- | guide/src/continuous-integration.md | 2 |
4 files changed, 11 insertions, 3 deletions
diff --git a/CHANGELOG.md b/CHANGELOG.md index 91892e81..4b115caf 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,13 @@ # Changelog +## mdBook 0.4.39 +[v0.4.37...v0.4.39](https://github.com/rust-lang/mdBook/compare/v0.4.38...v0.4.39) + +### Fixed + +- Fixed the automatic deploy broken in the previous release. + [#2383](https://github.com/rust-lang/mdBook/pull/2383) + ## mdBook 0.4.38 [v0.4.37...v0.4.38](https://github.com/rust-lang/mdBook/compare/v0.4.37...v0.4.38) @@ -977,7 +977,7 @@ dependencies = [ [[package]] name = "mdbook" -version = "0.4.38" +version = "0.4.39" dependencies = [ "ammonia", "anyhow", @@ -1,6 +1,6 @@ [package] name = "mdbook" -version = "0.4.38" +version = "0.4.39" authors = [ "Mathieu David <mathieudavid@mathieudavid.org>", "Michael-F-Bryan <michaelfbryan@gmail.com>", diff --git a/guide/src/continuous-integration.md b/guide/src/continuous-integration.md index 08f1996e..af9ba69a 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.38/mdbook-v0.4.38-x86_64-unknown-linux-gnu.tar.gz | tar -xz --directory=bin +curl -sSL https://github.com/rust-lang/mdBook/releases/download/v0.4.39/mdbook-v0.4.39-x86_64-unknown-linux-gnu.tar.gz | tar -xz --directory=bin bin/mdbook build ``` |