Release 0.3.1
This commit is contained in:
parent
9cd47eb80f
commit
50d5917530
24
CHANGELOG.md
24
CHANGELOG.md
|
@ -1,7 +1,29 @@
|
||||||
# Changelog
|
# Changelog
|
||||||
|
|
||||||
|
## mdBook 0.3.1
|
||||||
|
[69a08ef...9cd47eb](https://github.com/rust-lang-nursery/mdBook/compare/69a08ef...9cd47eb)
|
||||||
|
|
||||||
|
### Added
|
||||||
|
- 🔥 Added ability to include files using anchor points instead of line numbers.
|
||||||
|
[#851](https://github.com/rust-lang-nursery/mdBook/pull/851)
|
||||||
|
- Added `language` configuration value to set the language of the book, which
|
||||||
|
will affect things like the `<html lang="en">` tag.
|
||||||
|
[#941](https://github.com/rust-lang-nursery/mdBook/pull/941)
|
||||||
|
|
||||||
|
### Changed
|
||||||
|
- Updated to handlebars 2.0.
|
||||||
|
[#977](https://github.com/rust-lang-nursery/mdBook/pull/977)
|
||||||
|
|
||||||
|
### Fixed
|
||||||
|
- Fixed memory leak warning.
|
||||||
|
[#967](https://github.com/rust-lang-nursery/mdBook/pull/967)
|
||||||
|
- Fix more print.html links.
|
||||||
|
[#963](https://github.com/rust-lang-nursery/mdBook/pull/963)
|
||||||
|
- Fixed crash on some unicode input.
|
||||||
|
[#978](https://github.com/rust-lang-nursery/mdBook/pull/978)
|
||||||
|
|
||||||
## mdBook 0.3.0
|
## mdBook 0.3.0
|
||||||
[6cbc41d...84d4063](https://github.com/rust-lang-nursery/mdBook/compare/6cbc41d...84d4063)
|
[6cbc41d...69a08ef](https://github.com/rust-lang-nursery/mdBook/compare/6cbc41d...69a08ef)
|
||||||
|
|
||||||
### Added
|
### Added
|
||||||
- Added ability to resize the sidebar.
|
- Added ability to resize the sidebar.
|
||||||
|
|
|
@ -633,7 +633,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
name = "mdbook"
|
name = "mdbook"
|
||||||
version = "0.3.0"
|
version = "0.3.1"
|
||||||
dependencies = [
|
dependencies = [
|
||||||
"ammonia 2.1.2 (registry+https://github.com/rust-lang/crates.io-index)",
|
"ammonia 2.1.2 (registry+https://github.com/rust-lang/crates.io-index)",
|
||||||
"chrono 0.4.6 (registry+https://github.com/rust-lang/crates.io-index)",
|
"chrono 0.4.6 (registry+https://github.com/rust-lang/crates.io-index)",
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
[package]
|
[package]
|
||||||
name = "mdbook"
|
name = "mdbook"
|
||||||
version = "0.3.0"
|
version = "0.3.1"
|
||||||
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