From ff35b31267c6c34ec458f95f7006765f60408f9b Mon Sep 17 00:00:00 2001 From: Ashe Connor Date: Thu, 14 Feb 2019 09:45:19 +1100 Subject: [PATCH] 0.4.3 --- Cargo.toml | 2 +- README.md | 2 +- changelog.txt | 5 +++++ 3 files changed, 7 insertions(+), 2 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index 826fa873..33928774 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "comrak" -version = "0.4.2" +version = "0.4.3" 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 45b1156f..5e9b56dd 100644 --- a/README.md +++ b/README.md @@ -30,7 +30,7 @@ A binary is included which does everything you typically want: ``` $ comrak --help -comrak 0.4.2 +comrak 0.4.3 Ashe Connor A 100% CommonMark-compatible GitHub Flavored Markdown parser and formatter diff --git a/changelog.txt b/changelog.txt index 867efc9b..ca0e591f 100644 --- a/changelog.txt +++ b/changelog.txt @@ -1,3 +1,8 @@ +### 0.4.3 + +* Add a Default derive and Ast::new to make ASTs programmatically + constructible. (#101, Sunjay Varma and #102) + ### 0.4.2 * Add a callback to fill in broken reference links, per pulldown_cmark's