commit
aed518f945
16
CHANGELOG.md
16
CHANGELOG.md
|
@ -1,5 +1,21 @@
|
||||||
# Changelog
|
# Changelog
|
||||||
|
|
||||||
|
## mdBook 0.4.32
|
||||||
|
[v0.4.31...v0.4.32](https://github.com/rust-lang/mdBook/compare/v0.4.31...v0.4.32)
|
||||||
|
|
||||||
|
### Fixed
|
||||||
|
- Fixed theme-color meta tag not syncing with the theme.
|
||||||
|
[#2118](https://github.com/rust-lang/mdBook/pull/2118)
|
||||||
|
|
||||||
|
### Changed
|
||||||
|
- Updated all dependencies.
|
||||||
|
[#2121](https://github.com/rust-lang/mdBook/pull/2121)
|
||||||
|
[#2122](https://github.com/rust-lang/mdBook/pull/2122)
|
||||||
|
[#2123](https://github.com/rust-lang/mdBook/pull/2123)
|
||||||
|
[#2124](https://github.com/rust-lang/mdBook/pull/2124)
|
||||||
|
[#2125](https://github.com/rust-lang/mdBook/pull/2125)
|
||||||
|
[#2126](https://github.com/rust-lang/mdBook/pull/2126)
|
||||||
|
|
||||||
## mdBook 0.4.31
|
## mdBook 0.4.31
|
||||||
[v0.4.30...v0.4.31](https://github.com/rust-lang/mdBook/compare/v0.4.30...v0.4.31)
|
[v0.4.30...v0.4.31](https://github.com/rust-lang/mdBook/compare/v0.4.30...v0.4.31)
|
||||||
|
|
||||||
|
|
|
@ -977,7 +977,7 @@ dependencies = [
|
||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
name = "mdbook"
|
name = "mdbook"
|
||||||
version = "0.4.31"
|
version = "0.4.32"
|
||||||
dependencies = [
|
dependencies = [
|
||||||
"ammonia",
|
"ammonia",
|
||||||
"anyhow",
|
"anyhow",
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
[package]
|
[package]
|
||||||
name = "mdbook"
|
name = "mdbook"
|
||||||
version = "0.4.31"
|
version = "0.4.32"
|
||||||
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.31/mdbook-v0.4.31-x86_64-unknown-linux-gnu.tar.gz | tar -xz --directory=bin
|
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
|
||||||
bin/mdbook build
|
bin/mdbook build
|
||||||
```
|
```
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue