summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorEric Huss <eric@huss.org>2019-07-15 14:58:07 -0700
committerGitHub <noreply@github.com>2019-07-15 14:58:07 -0700
commit7c4d2070f793a3edb052c8fbfe6b9fb8081a7f43 (patch)
treee21af3625e768171ce7cf4de327e097b241df0a1
parent9cd47eb80f9a950eddc4e49f687b966dc3d6b0a0 (diff)
parent50d5917530cfee19bf4dcbd06485a4bd3e29e05a (diff)
Merge pull request #981 from ehuss/release-0.3.1v0.3.1
Release 0.3.1
-rw-r--r--CHANGELOG.md24
-rw-r--r--Cargo.lock2
-rw-r--r--Cargo.toml2
3 files changed, 25 insertions, 3 deletions
diff --git a/CHANGELOG.md b/CHANGELOG.md
index fd18a4ac..90cb2242 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -1,7 +1,29 @@
# 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
-[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 ability to resize the sidebar.
diff --git a/Cargo.lock b/Cargo.lock
index 67e5b1e7..fcab1aa7 100644
--- a/Cargo.lock
+++ b/Cargo.lock
@@ -633,7 +633,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
[[package]]
name = "mdbook"
-version = "0.3.0"
+version = "0.3.1"
dependencies = [
"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)",
diff --git a/Cargo.toml b/Cargo.toml
index a85ca68b..95238c75 100644
--- a/Cargo.toml
+++ b/Cargo.toml
@@ -1,6 +1,6 @@
[package]
name = "mdbook"
-version = "0.3.0"
+version = "0.3.1"
authors = [
"Mathieu David <mathieudavid@mathieudavid.org>",
"Michael-F-Bryan <michaelfbryan@gmail.com>",