Skip to content

Commit

Permalink
0.14.0
Browse files Browse the repository at this point in the history
  • Loading branch information
kivikakk committed Jul 12, 2022
1 parent e0de513 commit c6be17f
Show file tree
Hide file tree
Showing 4 changed files with 14 additions and 4 deletions.
2 changes: 1 addition & 1 deletion Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion Cargo.toml
@@ -1,6 +1,6 @@
[package]
name = "comrak"
version = "0.13.2"
version = "0.14.0"
authors = ["Ashe Connor <ashe@kivikakk.ee>"]
description = "A 100% CommonMark-compatible GitHub Flavored Markdown parser and formatter"
documentation = "https://docs.rs/comrak"
Expand Down
6 changes: 4 additions & 2 deletions README.md
Expand Up @@ -22,7 +22,7 @@ Specify it as a requirement in `Cargo.toml`:

``` toml
[dependencies]
comrak = "0.13"
comrak = "0.14"
```

Comrak supports Rust stable.
Expand All @@ -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 <ashe@kivikakk.ee>
A 100% CommonMark-compatible GitHub Flavored Markdown parser and formatter

Expand Down Expand Up @@ -72,6 +72,8 @@ OPTIONS:
commonmark]
--front-matter-delimiter <DELIMITER> Ignore front-matter that starts and ends with the given string
--header-ids <PREFIX> Use the Comrak header IDs extension, with the given ID prefix
--list-style <LIST_STYLE> Specify bullet character for lists (-, +, *) in CommonMark ouput
[default: dash] [possible values: dash, plus, star]
-o, --output <FILE> Write output to FILE instead of stdout
--syntax-highlighting <THEME> Syntax highlighting for codefence blocks. Choose a theme or 'none' for
disabling. [default: base16-ocean.dark]
Expand Down
8 changes: 8 additions & 0 deletions 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.
Expand Down

0 comments on commit c6be17f

Please sign in to comment.