Skip to content

Commit

Permalink
0.9.1
Browse files Browse the repository at this point in the history
  • Loading branch information
kivikakk committed Feb 12, 2021
1 parent 95ac6ca commit b824a91
Show file tree
Hide file tree
Showing 3 changed files with 19 additions and 10 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.0"
version = "0.9.1"
authors = ["Ashe Connor <[email protected]>"]
description = "A 100% CommonMark-compatible GitHub Flavored Markdown parser and formatter"
documentation = "https://docs.rs/comrak"
Expand Down
21 changes: 12 additions & 9 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ curl.exe -A "MS" https://webinstall.dev/comrak | powershell

``` console
$ comrak --help
comrak 0.9.0
comrak 0.9.1
Ashe Connor <[email protected]>
A 100% CommonMark-compatible GitHub Flavored Markdown parser and formatter

Expand All @@ -62,14 +62,17 @@ FLAGS:
-V, --version Prints version information

OPTIONS:
-c, --config-file <PATH> Path to config file containing command-line arguments, or `none' [default:
/Users/kivikakk/.config/comrak/config]
--default-info-string <INFO> Default value for fenced code block's info strings if none is given
-e, --extension <EXTENSION>... Specify an extension name to use [possible values: strikethrough, tagfilter,
table, autolink, tasklist, superscript, footnotes, description-lists]
-t, --to <FORMAT> Specify output format [default: html] [possible values: html, commonmark]
--header-ids <PREFIX> Use the Comrak header IDs extension, with the given ID prefix
--width <WIDTH> Specify wrap width (0 = nowrap) [default: 0]
-c, --config-file <PATH> Path to config file containing command-line arguments, or `none'
[default: /Users/kameliya/.config/comrak/config]
--default-info-string <INFO> Default value for fenced code block's info strings if none is given
-e, --extension <EXTENSION>... Specify an extension name to use [possible values: strikethrough,
tagfilter, table, autolink, tasklist, superscript, footnotes,
description-lists]
-t, --to <FORMAT> Specify output format [default: html] [possible values: html,
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
--width <WIDTH> Specify wrap width (0 = nowrap) [default: 0]

ARGS:
<FILE>... The CommonMark file to parse; or standard input if none passed
Expand Down
6 changes: 6 additions & 0 deletions changelog.txt
Original file line number Diff line number Diff line change
@@ -1,3 +1,9 @@
### 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)

### 0.9.0

* 0.8.2 was a semver-breaking change, so we're now bumping to 0.9.0. Some
Expand Down

0 comments on commit b824a91

Please sign in to comment.