summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorEric Huss <eric@huss.org>2024-05-16 22:09:16 +0000
committerGitHub <noreply@github.com>2024-05-16 22:09:16 +0000
commitb960c697dcf55b7d4657e8104d5bf3faf3080471 (patch)
treee4fa286a6f4e7082f2a64cf278e37fe33920ab4f
parent8884008b4d10381316288badd588227da80f5820 (diff)
parent0383b26f466667f8a3c95c2ea701809ac3a394b4 (diff)
Merge pull request #2382 from ehuss/bump-versionv0.4.38
Update to 0.4.38
-rw-r--r--CHANGELOG.md31
-rw-r--r--Cargo.lock2
-rw-r--r--Cargo.toml2
-rw-r--r--guide/src/continuous-integration.md2
4 files changed, 34 insertions, 3 deletions
diff --git a/CHANGELOG.md b/CHANGELOG.md
index 94b60f2f..91892e81 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 5abe27ca..746bb45c 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 d565adc5..f5482915 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 <mathieudavid@mathieudavid.org>",
"Michael-F-Bryan <michaelfbryan@gmail.com>",
diff --git a/guide/src/continuous-integration.md b/guide/src/continuous-integration.md
index ecb1395b..08f1996e 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
```