From 84ba8042f629161687eb0807d9a1cfb11517cf7e Mon Sep 17 00:00:00 2001 From: Eric Huss Date: Thu, 16 May 2024 18:20:39 -0700 Subject: [PATCH] Update to 0.4.40 --- CHANGELOG.md | 10 +++++++++- Cargo.lock | 2 +- Cargo.toml | 2 +- guide/src/continuous-integration.md | 2 +- 4 files changed, 12 insertions(+), 4 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 4b115caf1d..965e54c519 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,7 +1,15 @@ # Changelog +## mdBook 0.4.40 +[v0.4.39...v0.4.40](https://github.com/rust-lang/mdBook/compare/v0.4.39...v0.4.40) + +### Fixed + +- Reverted the update to pulldown-cmark which broke the semver API. + [#2388](https://github.com/rust-lang/mdBook/pull/2388) + ## mdBook 0.4.39 -[v0.4.37...v0.4.39](https://github.com/rust-lang/mdBook/compare/v0.4.38...v0.4.39) +[v0.4.38...v0.4.39](https://github.com/rust-lang/mdBook/compare/v0.4.38...v0.4.39) ### Fixed diff --git a/Cargo.lock b/Cargo.lock index 0e162ed6a1..5e268a89fc 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -977,7 +977,7 @@ dependencies = [ [[package]] name = "mdbook" -version = "0.4.39" +version = "0.4.40" dependencies = [ "ammonia", "anyhow", diff --git a/Cargo.toml b/Cargo.toml index ebcbffe301..59562fa42f 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "mdbook" -version = "0.4.39" +version = "0.4.40" authors = [ "Mathieu David ", "Michael-F-Bryan ", diff --git a/guide/src/continuous-integration.md b/guide/src/continuous-integration.md index af9ba69a45..25168869d2 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.39/mdbook-v0.4.39-x86_64-unknown-linux-gnu.tar.gz | tar -xz --directory=bin +curl -sSL https://github.com/rust-lang/mdBook/releases/download/v0.4.40/mdbook-v0.4.40-x86_64-unknown-linux-gnu.tar.gz | tar -xz --directory=bin bin/mdbook build ```