diff --git a/CHANGELOG.md b/CHANGELOG.md index 94b60f2f65..91892e81bb 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,36 @@ # Changelog +## mdBook 0.4.38 +[v0.4.37...v0.4.38](https://github.com/rust-lang/mdBook/compare/v0.4.37...v0.4.38) + +### Added + +- Added `nix` to the default set of languages supported for syntax highlighting. + [#2262](https://github.com/rust-lang/mdBook/pull/2262) + +### Changed + +- The `output.html.curly-quotes` option has been renamed to `output.html.smart-punctuation` to better reflect what it does. The old option `curly-quotes` is kept for compatibility, but may be removed in the future. + [#2327](https://github.com/rust-lang/mdBook/pull/2327) +- The file-watcher used in `mdbook serve` and `mdbook watch` now uses a poll-based watcher instead of the native operating system notifications. This should fix issues on various systems and environments, and more accurately detect when files change. The native watcher can still be used with the `--watcher native` CLI option. + [#2325](https://github.com/rust-lang/mdBook/pull/2325) +- `mdbook test` output now includes color, and shows relative paths to the source. + [#2259](https://github.com/rust-lang/mdBook/pull/2259) +- Updated dependencies, MSRV raised to 1.74 + [#2350](https://github.com/rust-lang/mdBook/pull/2350) + [#2351](https://github.com/rust-lang/mdBook/pull/2351) + [#2378](https://github.com/rust-lang/mdBook/pull/2378) + [#2381](https://github.com/rust-lang/mdBook/pull/2381) + +### Fixed + +- Reduced memory allocation when copying files. + [#2355](https://github.com/rust-lang/mdBook/pull/2355) +- Fixed the horizontal divider in `SUMMARY.md` from being indented into the previous nested section. + [#2364](https://github.com/rust-lang/mdBook/pull/2364) +- Removed unnecessary `@import` in the CSS. + [#2260](https://github.com/rust-lang/mdBook/pull/2260) + ## mdBook 0.4.37 [v0.4.36...v0.4.37](https://github.com/rust-lang/mdBook/compare/v0.4.36...v0.4.37) diff --git a/Cargo.lock b/Cargo.lock index 5e43d12d77..7eff1caa1a 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -977,7 +977,7 @@ dependencies = [ [[package]] name = "mdbook" -version = "0.4.37" +version = "0.4.38" dependencies = [ "ammonia", "anyhow", diff --git a/Cargo.toml b/Cargo.toml index a8646186cc..6b72083163 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "mdbook" -version = "0.4.37" +version = "0.4.38" authors = [ "Mathieu David ", "Michael-F-Bryan ", diff --git a/guide/src/continuous-integration.md b/guide/src/continuous-integration.md index ecb1395bf7..08f1996e35 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.37/mdbook-v0.4.37-x86_64-unknown-linux-gnu.tar.gz | tar -xz --directory=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 bin/mdbook build ```