Skip to content

Commit f04d7b8

Browse files
authored
Merge pull request #1072 from ehuss/release-0.3.2
Release 0.3.2.
2 parents 2b649fe + bfcddf2 commit f04d7b8

File tree

3 files changed

+75
-2
lines changed

3 files changed

+75
-2
lines changed

CHANGELOG.md

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

3+
## mdBook 0.3.2
4+
[9cd47eb...2b649fe](https://github.com/rust-lang-nursery/mdBook/compare/9cd47eb...2b649fe)
5+
6+
### Added
7+
- Added a markdown renderer, which is off by default. This may be useful for
8+
debugging preprocessors.
9+
[#1018](https://github.com/rust-lang-nursery/mdBook/pull/1018)
10+
- Code samples may now include line numbers with the
11+
`output.html.playpen.line-numbers` configuration value.
12+
[#1035](https://github.com/rust-lang-nursery/mdBook/pull/1035)
13+
- The `watch` and `serve` commands will now ignore files listed in
14+
`.gitignore`.
15+
[#1044](https://github.com/rust-lang-nursery/mdBook/pull/1044)
16+
- Added automatic dark-theme detection based on the CSS `prefers-color-scheme`
17+
feature. This may be enabled by setting `output.html.preferred-dark-theme`
18+
to your preferred dark theme.
19+
[#1037](https://github.com/rust-lang-nursery/mdBook/pull/1037)
20+
- Added `rustdoc_include` preprocessor. This makes it easier to include
21+
portions of an external Rust source file. The rest of the file is hidden,
22+
but the user may expand it to see the entire file, and will continue to work
23+
with `mdbook test`.
24+
[#1003](https://github.com/rust-lang-nursery/mdBook/pull/1003)
25+
- Added Ctrl-Enter shortcut to the playpen editor to automatically run the
26+
sample.
27+
[#1066](https://github.com/rust-lang-nursery/mdBook/pull/1066)
28+
- Added `output.html.playpen.copyable` configuration option to disable
29+
the copy button.
30+
[#1050](https://github.com/rust-lang-nursery/mdBook/pull/1050)
31+
- Added ability to dynamically expand and fold sections within the sidebar.
32+
See the `output.html.fold` configuration to enable this feature.
33+
[#1027](https://github.com/rust-lang-nursery/mdBook/pull/1027)
34+
35+
### Changed
36+
- Use standard `scrollbar-color` CSS along with webkit extension
37+
[#816](https://github.com/rust-lang-nursery/mdBook/pull/816)
38+
- The renderer build directory is no longer deleted before the renderer is
39+
run. This allows a backend to cache results between runs.
40+
[#985](https://github.com/rust-lang-nursery/mdBook/pull/985)
41+
- Next/prev links now highlight on hover to indicate it is clickable.
42+
[#994](https://github.com/rust-lang-nursery/mdBook/pull/994)
43+
- Increase padding of table headers.
44+
[#824](https://github.com/rust-lang-nursery/mdBook/pull/824)
45+
- Errors in `[output.html]` config are no longer ignored.
46+
[#1033](https://github.com/rust-lang-nursery/mdBook/pull/1033)
47+
- Updated highlight.js for syntax highlighting updates (primarily to add
48+
async/await to Rust highlighting).
49+
[#1041](https://github.com/rust-lang-nursery/mdBook/pull/1041)
50+
- Raised minimum supported rust version to 1.35.
51+
[#1003](https://github.com/rust-lang-nursery/mdBook/pull/1003)
52+
- Hidden code lines are no longer dynamically removed via JavaScript, but
53+
instead managed with CSS.
54+
[#846](https://github.com/rust-lang-nursery/mdBook/pull/846)
55+
[#1065](https://github.com/rust-lang-nursery/mdBook/pull/1065)
56+
- Changed the default font set for the ACE editor, giving preference to
57+
"Source Code Pro".
58+
[#1062](https://github.com/rust-lang-nursery/mdBook/pull/1062)
59+
- Windows 32-bit releases are no longer published.
60+
[#1071](https://github.com/rust-lang-nursery/mdBook/pull/1071)
61+
62+
### Fixed
63+
- Fixed sidebar auto-scrolling.
64+
[#1052](https://github.com/rust-lang-nursery/mdBook/pull/1052)
65+
- Fixed error message when running `clean` multiple times.
66+
[#1055](https://github.com/rust-lang-nursery/mdBook/pull/1055)
67+
- Actually fix the "next" link on index.html. The previous fix didn't work.
68+
[#1005](https://github.com/rust-lang-nursery/mdBook/pull/1005)
69+
- Stop using `inline-block` for `inline code`, fixing selection highlighting
70+
and some rendering issues.
71+
[#1058](https://github.com/rust-lang-nursery/mdBook/pull/1058)
72+
- Fix header auto-hide on browsers with momentum scrolling that allows
73+
negative `scrollTop`.
74+
[#1070](https://github.com/rust-lang-nursery/mdBook/pull/1070)
75+
376
## mdBook 0.3.1
477
[69a08ef...9cd47eb](https://github.com/rust-lang-nursery/mdBook/compare/69a08ef...9cd47eb)
578

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.3.1"
3+
version = "0.3.2"
44
authors = [
55
"Mathieu David <mathieudavid@mathieudavid.org>",
66
"Michael-F-Bryan <michaelfbryan@gmail.com>",

0 commit comments

Comments
 (0)