Skip to content

Commit 891b7c0

Browse files
committed
Update to 0.4.33
1 parent a8fd603 commit 891b7c0

File tree

4 files changed

+20
-3
lines changed

4 files changed

+20
-3
lines changed

CHANGELOG.md

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

3+
## mdBook 0.4.33
4+
[v0.4.32...v0.4.33](https://github.com/rust-lang/mdBook/compare/v0.4.32...v0.4.33)
5+
6+
### Added
7+
- The `color-scheme` CSS property is now set based on the light/dark theme, which applies some slight color differences in browser elements like scroll bars on some browsers.
8+
[#2134](https://github.com/rust-lang/mdBook/pull/2134)
9+
10+
### Fixed
11+
- Fixed watching of extra-watch-dirs when not running in the book root directory.
12+
[#2146](https://github.com/rust-lang/mdBook/pull/2146)
13+
- Reverted the dependency update to the `toml` crate (again!). This was an unintentional breaking change in 0.4.32.
14+
[#2021](https://github.com/rust-lang/mdBook/pull/2021)
15+
- Changed macOS change notifications to use the kqueue implementation which should fix some issues with repeated rebuilds when a file changed.
16+
[#2152](https://github.com/rust-lang/mdBook/pull/2152)
17+
- Don't set a background color in the print page for code blocks in a header.
18+
[#2150](https://github.com/rust-lang/mdBook/pull/2150)
19+
320
## mdBook 0.4.32
421
[v0.4.31...v0.4.32](https://github.com/rust-lang/mdBook/compare/v0.4.31...v0.4.32)
522

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.32"
3+
version = "0.4.33"
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.32/mdbook-v0.4.32-x86_64-unknown-linux-gnu.tar.gz | tar -xz --directory=bin
24+
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
2525
bin/mdbook build
2626
```
2727

0 commit comments

Comments
 (0)