From c6be17ff503bd71eb08ae4cf6f49f12027be545a Mon Sep 17 00:00:00 2001 From: Asherah Connor Date: Wed, 13 Jul 2022 07:50:53 +1000 Subject: [PATCH] 0.14.0 --- Cargo.lock | 2 +- Cargo.toml | 2 +- README.md | 6 ++++-- changelog.txt | 8 ++++++++ 4 files changed, 14 insertions(+), 4 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index e0f03c3f..39775dfb 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -157,7 +157,7 @@ dependencies = [ [[package]] name = "comrak" -version = "0.13.2" +version = "0.14.0" dependencies = [ "clap", "entities", diff --git a/Cargo.toml b/Cargo.toml index 9a098fec..ecec0174 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "comrak" -version = "0.13.2" +version = "0.14.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 5fe2269b..53ef1203 100644 --- a/README.md +++ b/README.md @@ -22,7 +22,7 @@ Specify it as a requirement in `Cargo.toml`: ``` toml [dependencies] -comrak = "0.13" +comrak = "0.14" ``` Comrak supports Rust stable. @@ -43,7 +43,7 @@ curl.exe -A "MS" https://webinstall.dev/comrak | powershell ``` console $ comrak --help -comrak 0.13.2 +comrak 0.14.0 Ashe Connor A 100% CommonMark-compatible GitHub Flavored Markdown parser and formatter @@ -72,6 +72,8 @@ OPTIONS: commonmark] --front-matter-delimiter Ignore front-matter that starts and ends with the given string --header-ids Use the Comrak header IDs extension, with the given ID prefix + --list-style Specify bullet character for lists (-, +, *) in CommonMark ouput + [default: dash] [possible values: dash, plus, star] -o, --output Write output to FILE instead of stdout --syntax-highlighting Syntax highlighting for codefence blocks. Choose a theme or 'none' for disabling. [default: base16-ocean.dark] diff --git a/changelog.txt b/changelog.txt index 4c1de679..836eff8e 100644 --- a/changelog.txt +++ b/changelog.txt @@ -1,3 +1,11 @@ +### 0.14.0 + +* Add C FFI, allowing Comrak to be used from other languages. (#171, Garen + Torikian) +* Fix line wrapping in CommonMark output. (#228, Edward Loveall) +* Add option to specify character used for unordered list bullets in + CommonMark output. (#229, Edward Loveall) + ### 0.13.2 * Fix Windows build.