diff --git a/Cargo.toml b/Cargo.toml index 2b7f5010..7888d0f6 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "comrak" -version = "0.2.6" +version = "0.2.7" 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 dd844151..5c5326e7 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.2.6 +comrak 0.2.7 Ashe Connor A 100% CommonMark-compatible GitHub Flavored Markdown parser and formatter diff --git a/changelog.txt b/changelog.txt index c4dd0dd4..bf835c6b 100644 --- a/changelog.txt +++ b/changelog.txt @@ -1,3 +1,7 @@ +### 0.2.7 + +* Use [`pest`](https://github.com/pest-parser/pest) instead of regexes for lexing. + ### 0.2.6 * Fixed a bug where back-to-back emphases would not be processed correctly.