Skip to content

Commit

Permalink
0.10.0
Browse files Browse the repository at this point in the history
  • Loading branch information
kivikakk committed Mar 19, 2021
1 parent dfcdf49 commit 0c7c3c5
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 3 deletions.
2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "comrak"
version = "0.9.1"
version = "0.10.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
5 changes: 3 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ Specify it as a requirement in `Cargo.toml`:

``` toml
[dependencies]
comrak = "0.9"
comrak = "0.10"
```

Comrak supports Rust stable.
Expand All @@ -43,7 +43,7 @@ curl.exe -A "MS" https://webinstall.dev/comrak | powershell

``` console
$ comrak --help
comrak 0.9.1
comrak 0.10.0
Ashe Connor <ashe@kivikakk.ee>
A 100% CommonMark-compatible GitHub Flavored Markdown parser and formatter

Expand Down Expand Up @@ -72,6 +72,7 @@ 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
-o, --output <FILE> Write output to FILE instead of stdout
--width <WIDTH> Specify wrap width (0 = nowrap) [default: 0]

ARGS:
Expand Down
6 changes: 6 additions & 0 deletions changelog.txt
Original file line number Diff line number Diff line change
@@ -1,8 +1,14 @@
### 0.10.0

* 0.9.1 was a semver-breaking change.
* Add -o/--output CLI option. (#177)

### 0.9.1

* SECURITY: we were matching unsafe URL prefixes, such as `data:` or
`javascript:`, in a case-sensitive manner. This meant prefixes like `Data:`
were untouched. Please upgrade as soon as possible. (Kouhei Morita)
* Add support for ignoring front matter. (#170, Eitan Mosenkis.)

### 0.9.0

Expand Down

0 comments on commit 0c7c3c5

Please sign in to comment.