Skip to content

Commit 9349204

Browse files
authored
Merge pull request #2094 from ehuss/bump-version
Update to 0.4.30
2 parents 61708ad + d2bcd04 commit 9349204

File tree

4 files changed

+20
-3
lines changed

4 files changed

+20
-3
lines changed

CHANGELOG.md

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

3+
## mdBook 0.4.30
4+
[v0.4.29...v0.4.30](https://github.com/rust-lang/mdBook/compare/v0.4.29...v0.4.30)
5+
6+
### Added
7+
- Added support for heading attributes.
8+
Attributes are specified in curly braces just after the heading text.
9+
An HTML ID can be specified with `#` and classes with `.`.
10+
For example: `## My heading {#custom-id .class1 .class2}`
11+
[#2013](https://github.com/rust-lang/mdBook/pull/2013)
12+
- Added support for hidden code lines for languages other than Rust.
13+
The `output.html.code.hidelines` table allows you to define the prefix character that will be used to hide code lines based on the language.
14+
[#2093](https://github.com/rust-lang/mdBook/pull/2093)
15+
16+
### Fixed
17+
- Fixed a few minor markdown rendering issues.
18+
[#2092](https://github.com/rust-lang/mdBook/pull/2092)
19+
320
## mdBook 0.4.29
421
[v0.4.28...v0.4.29](https://github.com/rust-lang/mdBook/compare/v0.4.28...v0.4.29)
522

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.29"
3+
version = "0.4.30"
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.29/mdbook-v0.4.29-x86_64-unknown-linux-gnu.tar.gz | tar -xz --directory=bin
24+
curl -sSL https://github.com/rust-lang/mdBook/releases/download/v0.4.30/mdbook-v0.4.30-x86_64-unknown-linux-gnu.tar.gz | tar -xz --directory=bin
2525
bin/mdbook build
2626
```
2727

0 commit comments

Comments
 (0)