This commit is contained in:
Asherah Connor 2024-03-30 10:09:38 +11:00
parent 54339c9409
commit a2aaf0d719
4 changed files with 12 additions and 3 deletions

2
Cargo.lock generated
View File

@ -126,7 +126,7 @@ dependencies = [
[[package]]
name = "comrak"
version = "0.21.0"
version = "0.22.0"
dependencies = [
"arbitrary",
"clap",

View File

@ -1,6 +1,6 @@
[package]
name = "comrak"
version = "0.21.0"
version = "0.22.0"
authors = ["Amelia Cuss <amelia@kivikakk.ee>"]
description = "A 100% CommonMark-compatible GitHub Flavored Markdown parser and formatter"
documentation = "https://docs.rs/comrak"

View File

@ -22,7 +22,7 @@ Specify it as a requirement in `Cargo.toml`:
``` toml
[dependencies]
comrak = "0.21"
comrak = "0.22"
```
Comrak supports Rust stable.

View File

@ -1,3 +1,12 @@
### 0.22.0
* Fix broken docs link in README by @ohakutsu in https://github.com/kivikakk/comrak/pull/364
* Make non public nodes public by @mfontanini in https://github.com/kivikakk/comrak/pull/363
* cargo update -p rustix --precise 0.36.17 by @kivikakk in https://github.com/kivikakk/comrak/pull/368
* Add render option to wrap escaped chars in span by @digitalmoksha in https://github.com/kivikakk/comrak/pull/367
* Add math support by @digitalmoksha in https://github.com/kivikakk/comrak/pull/366
### 0.21.0
* Add a multiline blockquote extension by @digitalmoksha in https://github.com/kivikakk/comrak/pull/359