Update to 0.4.8 (#1527)
This commit is contained in:
parent
b592b10633
commit
7e01cf9e18
18
CHANGELOG.md
18
CHANGELOG.md
|
@ -1,5 +1,23 @@
|
||||||
# Changelog
|
# Changelog
|
||||||
|
|
||||||
|
## mdBook 0.4.8
|
||||||
|
[fcceee4...b592b10](https://github.com/rust-lang/mdBook/compare/fcceee4...b592b10)
|
||||||
|
|
||||||
|
### Added
|
||||||
|
- Added the option `output.html.edit-url-template` which can be a URL which is
|
||||||
|
linked on each page to direct the user to a site (such as GitHub) where the
|
||||||
|
user can directly suggest an edit for the page they are currently reading.
|
||||||
|
[#1506](https://github.com/rust-lang/mdBook/pull/1506)
|
||||||
|
|
||||||
|
### Changed
|
||||||
|
- Printed output now includes a page break between chapters.
|
||||||
|
[#1485](https://github.com/rust-lang/mdBook/pull/1485)
|
||||||
|
|
||||||
|
### Fixed
|
||||||
|
- HTML, such as HTML comments, is now ignored if it appears above the title line
|
||||||
|
in `SUMMARY.md`.
|
||||||
|
[#1437](https://github.com/rust-lang/mdBook/pull/1437)
|
||||||
|
|
||||||
## mdBook 0.4.7
|
## mdBook 0.4.7
|
||||||
[9a9eb01...c83bbd6](https://github.com/rust-lang/mdBook/compare/9a9eb01...c83bbd6)
|
[9a9eb01...c83bbd6](https://github.com/rust-lang/mdBook/compare/9a9eb01...c83bbd6)
|
||||||
|
|
||||||
|
|
|
@ -723,7 +723,7 @@ checksum = "7ffc5c5338469d4d3ea17d269fa8ea3512ad247247c30bd2df69e68309ed0a08"
|
||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
name = "mdbook"
|
name = "mdbook"
|
||||||
version = "0.4.7"
|
version = "0.4.8"
|
||||||
dependencies = [
|
dependencies = [
|
||||||
"ammonia",
|
"ammonia",
|
||||||
"anyhow",
|
"anyhow",
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
[package]
|
[package]
|
||||||
name = "mdbook"
|
name = "mdbook"
|
||||||
version = "0.4.7"
|
version = "0.4.8"
|
||||||
authors = [
|
authors = [
|
||||||
"Mathieu David <mathieudavid@mathieudavid.org>",
|
"Mathieu David <mathieudavid@mathieudavid.org>",
|
||||||
"Michael-F-Bryan <michaelfbryan@gmail.com>",
|
"Michael-F-Bryan <michaelfbryan@gmail.com>",
|
||||||
|
|
Loading…
Reference in New Issue