Skip to content

Commit b960c69

Browse files
authored
Merge pull request #2382 from ehuss/bump-version
Update to 0.4.38
2 parents 8884008 + 0383b26 commit b960c69

File tree

4 files changed

+34
-3
lines changed

4 files changed

+34
-3
lines changed

CHANGELOG.md

Lines changed: 31 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,36 @@
11
# Changelog
22

3+
## mdBook 0.4.38
4+
[v0.4.37...v0.4.38](https://github.com/rust-lang/mdBook/compare/v0.4.37...v0.4.38)
5+
6+
### Added
7+
8+
- Added `nix` to the default set of languages supported for syntax highlighting.
9+
[#2262](https://github.com/rust-lang/mdBook/pull/2262)
10+
11+
### Changed
12+
13+
- 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.
14+
[#2327](https://github.com/rust-lang/mdBook/pull/2327)
15+
- 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.
16+
[#2325](https://github.com/rust-lang/mdBook/pull/2325)
17+
- `mdbook test` output now includes color, and shows relative paths to the source.
18+
[#2259](https://github.com/rust-lang/mdBook/pull/2259)
19+
- Updated dependencies, MSRV raised to 1.74
20+
[#2350](https://github.com/rust-lang/mdBook/pull/2350)
21+
[#2351](https://github.com/rust-lang/mdBook/pull/2351)
22+
[#2378](https://github.com/rust-lang/mdBook/pull/2378)
23+
[#2381](https://github.com/rust-lang/mdBook/pull/2381)
24+
25+
### Fixed
26+
27+
- Reduced memory allocation when copying files.
28+
[#2355](https://github.com/rust-lang/mdBook/pull/2355)
29+
- Fixed the horizontal divider in `SUMMARY.md` from being indented into the previous nested section.
30+
[#2364](https://github.com/rust-lang/mdBook/pull/2364)
31+
- Removed unnecessary `@import` in the CSS.
32+
[#2260](https://github.com/rust-lang/mdBook/pull/2260)
33+
334
## mdBook 0.4.37
435
[v0.4.36...v0.4.37](https://github.com/rust-lang/mdBook/compare/v0.4.36...v0.4.37)
536

Cargo.lock

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "mdbook"
3-
version = "0.4.37"
3+
version = "0.4.38"
44
authors = [
55
"Mathieu David <[email protected]>",
66
"Michael-F-Bryan <[email protected]>",

guide/src/continuous-integration.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ A simple approach would be to use the popular `curl` CLI tool to download the ex
2121

2222
```sh
2323
mkdir bin
24-
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
24+
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
2525
bin/mdbook build
2626
```
2727

0 commit comments

Comments
 (0)