commit
00a30a9984
20
CHANGELOG.md
20
CHANGELOG.md
|
@ -1,5 +1,25 @@
|
||||||
# Changelog
|
# Changelog
|
||||||
|
|
||||||
|
## mdBook 0.4.29
|
||||||
|
[v0.4.28...v0.4.29](https://github.com/rust-lang/mdBook/compare/v0.4.28...v0.4.29)
|
||||||
|
|
||||||
|
### Changed
|
||||||
|
- Built-in fonts are no longer copied when `fonts/fonts.css` is overridded in the theme directory.
|
||||||
|
Additionally, the warning about `copy-fonts` has been removed if `fonts/fonts.css` is specified.
|
||||||
|
[#2080](https://github.com/rust-lang/mdBook/pull/2080)
|
||||||
|
- `mdbook init --force` now skips all interactive prompts as intended.
|
||||||
|
[#2057](https://github.com/rust-lang/mdBook/pull/2057)
|
||||||
|
- Updated dependencies
|
||||||
|
[#2063](https://github.com/rust-lang/mdBook/pull/2063)
|
||||||
|
[#2086](https://github.com/rust-lang/mdBook/pull/2086)
|
||||||
|
[#2082](https://github.com/rust-lang/mdBook/pull/2082)
|
||||||
|
[#2084](https://github.com/rust-lang/mdBook/pull/2084)
|
||||||
|
[#2085](https://github.com/rust-lang/mdBook/pull/2085)
|
||||||
|
|
||||||
|
### Fixed
|
||||||
|
- Switched from the `gitignore` library to `ignore`. This should bring some improvements with gitignore handling.
|
||||||
|
[#2076](https://github.com/rust-lang/mdBook/pull/2076)
|
||||||
|
|
||||||
## mdBook 0.4.28
|
## mdBook 0.4.28
|
||||||
[v0.4.27...v0.4.28](https://github.com/rust-lang/mdBook/compare/v0.4.27...v0.4.28)
|
[v0.4.27...v0.4.28](https://github.com/rust-lang/mdBook/compare/v0.4.27...v0.4.28)
|
||||||
|
|
||||||
|
|
|
@ -952,7 +952,7 @@ dependencies = [
|
||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
name = "mdbook"
|
name = "mdbook"
|
||||||
version = "0.4.28"
|
version = "0.4.29"
|
||||||
dependencies = [
|
dependencies = [
|
||||||
"ammonia",
|
"ammonia",
|
||||||
"anyhow",
|
"anyhow",
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
[package]
|
[package]
|
||||||
name = "mdbook"
|
name = "mdbook"
|
||||||
version = "0.4.28"
|
version = "0.4.29"
|
||||||
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.28/mdbook-v0.4.28-x86_64-unknown-linux-gnu.tar.gz | tar -xz --directory=bin
|
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
|
||||||
bin/mdbook build
|
bin/mdbook build
|
||||||
```
|
```
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue