From 55a79d90563f3bd5addad007f9c86fb196358e43 Mon Sep 17 00:00:00 2001 From: Elisabeth Henry Date: Thu, 18 Jul 2019 22:02:33 +0200 Subject: [PATCH] Bump version to 0.15.0 --- Cargo.lock | 2 +- Cargo.toml | 2 +- ChangeLog.md | 5 +++-- 3 files changed, 5 insertions(+), 4 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index f2e2567e..a5cfba4d 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -393,7 +393,7 @@ dependencies = [ [[package]] name = "crowbook" -version = "0.15.0-beta2" +version = "0.15.0" dependencies = [ "caribon 0.8.1 (registry+https://github.com/rust-lang/crates.io-index)", "clap 2.33.0 (registry+https://github.com/rust-lang/crates.io-index)", diff --git a/Cargo.toml b/Cargo.toml index f5a4dc3b..3986c33a 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "crowbook" -version = "0.15.0-beta2" +version = "0.15.0" edition = "2018" authors = ["Elisabeth Henry "] description = "Render a Markdown book in HTML, PDF or Epub" diff --git a/ChangeLog.md b/ChangeLog.md index b55c2bb4..f4f76a48 100644 --- a/ChangeLog.md +++ b/ChangeLog.md @@ -1,8 +1,8 @@ ChangeLog ========= -unreleased ------------------------------- +0.15.0 (2019-07-18) +----------------------- * Moved from `pulldown-cmark` to `comrak` for parsing Markdown. This may have some performances drawbacks but allows for a few more features: * Description lists @@ -18,6 +18,7 @@ unreleased * Now uses `reqwest` instead of `hyper` to connect to languagetool/grammalecte. * `hyphenation` dependency is now optional. * Dependencies update. +* Fix type deduction issues for new rustc compliler 0.14.1 (2018-06-01)