commit
6d183be0ec
4 changed files with 35 additions and 3 deletions
32
CHANGELOG.md
32
CHANGELOG.md
|
|
@ -1,5 +1,37 @@
|
||||||
# Changelog
|
# Changelog
|
||||||
|
|
||||||
|
## mdBook 0.4.41
|
||||||
|
[v0.4.40...v0.4.41](https://github.com/rust-lang/mdBook/compare/v0.4.40...v0.4.41)
|
||||||
|
|
||||||
|
### Added
|
||||||
|
|
||||||
|
- Added preliminary support for Rust 2024 edition.
|
||||||
|
[#2398](https://github.com/rust-lang/mdBook/pull/2398)
|
||||||
|
- Added a full example of the remove-emphasis preprocessor.
|
||||||
|
[#2464](https://github.com/rust-lang/mdBook/pull/2464)
|
||||||
|
|
||||||
|
### Changed
|
||||||
|
|
||||||
|
- Adjusted styling of clipboard/play icons.
|
||||||
|
[#2421](https://github.com/rust-lang/mdBook/pull/2421)
|
||||||
|
- Updated to handlebars v6.
|
||||||
|
[#2416](https://github.com/rust-lang/mdBook/pull/2416)
|
||||||
|
- Attr and section rules now have specific code highlighting.
|
||||||
|
[#2448](https://github.com/rust-lang/mdBook/pull/2448)
|
||||||
|
- The sidebar is now loaded from a common file, significantly reducing the book size when there are many chapters.
|
||||||
|
[#2414](https://github.com/rust-lang/mdBook/pull/2414)
|
||||||
|
- Updated dependencies.
|
||||||
|
[#2470](https://github.com/rust-lang/mdBook/pull/2470)
|
||||||
|
|
||||||
|
### Fixed
|
||||||
|
|
||||||
|
- Improved theme support when JavaScript is disabled.
|
||||||
|
[#2454](https://github.com/rust-lang/mdBook/pull/2454)
|
||||||
|
- Fixed broken themes when localStorage has an invalid theme id.
|
||||||
|
[#2463](https://github.com/rust-lang/mdBook/pull/2463)
|
||||||
|
- Adjusted the line-height of superscripts (and footnotes) to avoid adding extra space between lines.
|
||||||
|
[#2465](https://github.com/rust-lang/mdBook/pull/2465)
|
||||||
|
|
||||||
## mdBook 0.4.40
|
## mdBook 0.4.40
|
||||||
[v0.4.39...v0.4.40](https://github.com/rust-lang/mdBook/compare/v0.4.39...v0.4.40)
|
[v0.4.39...v0.4.40](https://github.com/rust-lang/mdBook/compare/v0.4.39...v0.4.40)
|
||||||
|
|
||||||
|
|
|
||||||
2
Cargo.lock
generated
2
Cargo.lock
generated
|
|
@ -977,7 +977,7 @@ dependencies = [
|
||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
name = "mdbook"
|
name = "mdbook"
|
||||||
version = "0.4.40"
|
version = "0.4.41"
|
||||||
dependencies = [
|
dependencies = [
|
||||||
"ammonia",
|
"ammonia",
|
||||||
"anyhow",
|
"anyhow",
|
||||||
|
|
|
||||||
|
|
@ -3,7 +3,7 @@ members = [".", "examples/remove-emphasis/mdbook-remove-emphasis"]
|
||||||
|
|
||||||
[package]
|
[package]
|
||||||
name = "mdbook"
|
name = "mdbook"
|
||||||
version = "0.4.40"
|
version = "0.4.41"
|
||||||
authors = [
|
authors = [
|
||||||
"Mathieu David <mathieudavid@mathieudavid.org>",
|
"Mathieu David <mathieudavid@mathieudavid.org>",
|
||||||
"Michael-F-Bryan <michaelfbryan@gmail.com>",
|
"Michael-F-Bryan <michaelfbryan@gmail.com>",
|
||||||
|
|
|
||||||
|
|
@ -21,7 +21,7 @@ A simple approach would be to use the popular `curl` CLI tool to download the ex
|
||||||
|
|
||||||
```sh
|
```sh
|
||||||
mkdir bin
|
mkdir bin
|
||||||
curl -sSL https://github.com/rust-lang/mdBook/releases/download/v0.4.40/mdbook-v0.4.40-x86_64-unknown-linux-gnu.tar.gz | tar -xz --directory=bin
|
curl -sSL https://github.com/rust-lang/mdBook/releases/download/v0.4.41/mdbook-v0.4.41-x86_64-unknown-linux-gnu.tar.gz | tar -xz --directory=bin
|
||||||
bin/mdbook build
|
bin/mdbook build
|
||||||
```
|
```
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Add table
Reference in a new issue