From 47d0960c44327e14f88f6c484911ac21f593396c Mon Sep 17 00:00:00 2001 From: Ashe Connor Date: Mon, 11 Sep 2017 14:50:52 +1000 Subject: [PATCH] 0.2.0 --- Cargo.toml | 2 +- README.md | 2 +- changelog.txt | 6 ++++++ 3 files changed, 8 insertions(+), 2 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index f725d529..1da1c802 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "comrak" -version = "0.1.9" +version = "0.2.0" authors = ["Ashe Connor "] description = "A 100% CommonMark-compatible GitHub Flavored Markdown parser and formatter" documentation = "https://docs.rs/comrak" diff --git a/README.md b/README.md index dee57d56..caaf2429 100644 --- a/README.md +++ b/README.md @@ -15,7 +15,7 @@ A binary is included which does everything you typically want: ``` $ comrak --help -comrak 0.1.9 +comrak 0.2.0 Ashe Connor CommonMark parser with GitHub Flavored Markdown extensions diff --git a/changelog.txt b/changelog.txt index 30e9038f..4209f2f2 100644 --- a/changelog.txt +++ b/changelog.txt @@ -1,3 +1,9 @@ +### 0.2.0 + +* The formatters no longer produce Strings themeselves; you must specify an + output stream. +* Speed up whitespace normalisation. + ### 0.1.9 * Multibyte character fix for autolink (#35, Shaquille Johnson).