diff --git a/Cargo.toml b/Cargo.toml index 23f653f9..f97da23f 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "comrak" -version = "0.2.9" +version = "0.2.10" 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 db3cde53..0b3b2e36 100644 --- a/README.md +++ b/README.md @@ -28,7 +28,7 @@ A binary is included which does everything you typically want: ``` $ comrak --help -comrak 0.2.9 +comrak 0.2.10 Ashe Connor A 100% CommonMark-compatible GitHub Flavored Markdown parser and formatter diff --git a/changelog.txt b/changelog.txt index 0f755820..05f160b8 100644 --- a/changelog.txt +++ b/changelog.txt @@ -1,3 +1,10 @@ +### 0.2.10 + +* Bring up to date with latest spec. +* Fix parsing of tables nested in other block elements (#61, Brian Anderson). +* Protect against stack smashing in inline processors and CommonMark and HTML + formatters (#63, Brian Anderson). + ### 0.2.9 * Fix a corner case in the ATX header parser (#53, Brian Anderson).