Skip to content

Commit 94e0a44

Browse files
authored
Merge pull request #2206 from ehuss/bump-version
Update to 0.4.35
2 parents 0583119 + f25181f commit 94e0a44

File tree

5 files changed

+19
-4
lines changed

5 files changed

+19
-4
lines changed

CHANGELOG.md

+15
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,20 @@
11
# Changelog
22

3+
## mdBook 0.4.35
4+
[v0.4.34...v0.4.35](https://github.com/rust-lang/mdBook/compare/v0.4.34...v0.4.35)
5+
6+
### Added
7+
- Added the `book.text-direction` setting for explicit support for right-to-left languages.
8+
[#1641](https://github.com/rust-lang/mdBook/pull/1641)
9+
- Added `rel=prefetch` to the "next" links to potentially improve browser performance.
10+
[#2168](https://github.com/rust-lang/mdBook/pull/2168)
11+
- Added a `.warning` CSS class which is styled for displaying warning blocks.
12+
[#2187](https://github.com/rust-lang/mdBook/pull/2187)
13+
14+
### Changed
15+
- Better support of the sidebar when JavaScript is disabled.
16+
[#2175](https://github.com/rust-lang/mdBook/pull/2175)
17+
318
## mdBook 0.4.34
419
[v0.4.33...v0.4.34](https://github.com/rust-lang/mdBook/compare/v0.4.33...v0.4.34)
520

Cargo.lock

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "mdbook"
3-
version = "0.4.34"
3+
version = "0.4.35"
44
authors = [
55
"Mathieu David <[email protected]>",
66
"Michael-F-Bryan <[email protected]>",

guide/src/continuous-integration.md

+1-1
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.34/mdbook-v0.4.34-x86_64-unknown-linux-gnu.tar.gz | tar -xz --directory=bin
24+
curl -sSL https://github.com/rust-lang/mdBook/releases/download/v0.4.35/mdbook-v0.4.35-x86_64-unknown-linux-gnu.tar.gz | tar -xz --directory=bin
2525
bin/mdbook build
2626
```
2727

guide/src/format/configuration/general.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ This is general information about your book.
4747
key in the configuration file.
4848
- **language:** The main language of the book, which is used as a language attribute `<html lang="en">` for example.
4949
This is also used to derive the direction of text (RTL, LTR) within the book.
50-
- **text_direction**: The direction of text in the book: Left-to-right (LTR) or Right-to-left (RTL). Possible values: `ltr`, `rtl`.
50+
- **text-direction**: The direction of text in the book: Left-to-right (LTR) or Right-to-left (RTL). Possible values: `ltr`, `rtl`.
5151
When not specified, the text direction is derived from the book's `language` attribute.
5252

5353
**book.toml**

0 commit comments

Comments
 (0)