From 219362318c728366979a740380e700d8c22525b9 Mon Sep 17 00:00:00 2001 From: Eric Huss Date: Wed, 14 Dec 2022 17:48:46 -0800 Subject: [PATCH] Update to 0.4.23 --- CHANGELOG.md | 15 +++++++++++++++ Cargo.lock | 2 +- Cargo.toml | 2 +- guide/src/continuous-integration.md | 2 +- 4 files changed, 18 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 71caf5ef..ee1099b8 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,20 @@ # Changelog +## mdBook 0.4.23 +[678b469...68a75da](https://github.com/rust-lang/mdBook/compare/678b469...68a75da) + +### Changed +- Updated all dependencies + [#1951](https://github.com/rust-lang/mdBook/pull/1951) + [#1952](https://github.com/rust-lang/mdBook/pull/1952) + [#1844](https://github.com/rust-lang/mdBook/pull/1844) +- Updated minimum Rust version to 1.60. + [#1951](https://github.com/rust-lang/mdBook/pull/1951) + +### Fixed +- Fixed a regression where playground code was missing hidden lines, preventing it from compiling correctly. + [#1950](https://github.com/rust-lang/mdBook/pull/1950) + ## mdBook 0.4.22 [40c06f5...4844f72](https://github.com/rust-lang/mdBook/compare/40c06f5...4844f72) diff --git a/Cargo.lock b/Cargo.lock index a2b7dd23..5221d2ab 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -923,7 +923,7 @@ dependencies = [ [[package]] name = "mdbook" -version = "0.4.22" +version = "0.4.23" dependencies = [ "ammonia", "anyhow", diff --git a/Cargo.toml b/Cargo.toml index c3209656..be5434ec 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "mdbook" -version = "0.4.22" +version = "0.4.23" authors = [ "Mathieu David ", "Michael-F-Bryan ", diff --git a/guide/src/continuous-integration.md b/guide/src/continuous-integration.md index 7639fd05..75c5d8d5 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.22/mdbook-v0.4.22-x86_64-unknown-linux-gnu.tar.gz | tar -xz --directory=bin +curl -sSL https://github.com/rust-lang/mdBook/releases/download/v0.4.23/mdbook-v0.4.23-x86_64-unknown-linux-gnu.tar.gz | tar -xz --directory=bin bin/mdbook build ```