From 55c017cad19239976250af4d7771daa9fa140dc2 Mon Sep 17 00:00:00 2001 From: Eric Huss Date: Sat, 5 Aug 2023 14:34:42 -0700 Subject: [PATCH] Update to 0.4.34 --- CHANGELOG.md | 7 +++++++ Cargo.lock | 2 +- Cargo.toml | 2 +- guide/src/continuous-integration.md | 2 +- 4 files changed, 10 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index fdfa089d31..54bea6af69 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,12 @@ # Changelog +## mdBook 0.4.34 +[v0.4.33...v0.4.34](https://github.com/rust-lang/mdBook/compare/v0.4.33...v0.4.34) + +### Fixed +- Fixed file change watcher failing on macOS with a large number of files. + [#2157](https://github.com/rust-lang/mdBook/pull/2157) + ## mdBook 0.4.33 [v0.4.32...v0.4.33](https://github.com/rust-lang/mdBook/compare/v0.4.32...v0.4.33) diff --git a/Cargo.lock b/Cargo.lock index 73a9d6452b..f8ccafc38b 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -955,7 +955,7 @@ dependencies = [ [[package]] name = "mdbook" -version = "0.4.33" +version = "0.4.34" dependencies = [ "ammonia", "anyhow", diff --git a/Cargo.toml b/Cargo.toml index 51eea5e45e..05fb077df3 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "mdbook" -version = "0.4.33" +version = "0.4.34" authors = [ "Mathieu David ", "Michael-F-Bryan ", diff --git a/guide/src/continuous-integration.md b/guide/src/continuous-integration.md index c6ef820bec..5a1a24a3c4 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.33/mdbook-v0.4.33-x86_64-unknown-linux-gnu.tar.gz | tar -xz --directory=bin +curl -sSL https://github.com/rust-lang/mdBook/releases/download/v0.4.34/mdbook-v0.4.34-x86_64-unknown-linux-gnu.tar.gz | tar -xz --directory=bin bin/mdbook build ```