Skip to content

Commit

Permalink
0.23.0
Browse files Browse the repository at this point in the history
  • Loading branch information
kivikakk committed Apr 29, 2024
1 parent 1a84232 commit 7d797e6
Show file tree
Hide file tree
Showing 5 changed files with 19 additions and 6 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
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "comrak"
version = "0.22.0"
version = "0.23.0"
authors = ["Amelia Cuss <[email protected]>"]
rust-version = "1.62.1"
description = "A 100% CommonMark-compatible GitHub Flavored Markdown parser and formatter"
Expand Down
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ Specify it as a requirement in `Cargo.toml`:

``` toml
[dependencies]
comrak = "0.22"
comrak = "0.23"
```

Comrak's library supports Rust <span class="msrv">1.62.1</span>+.
Expand Down Expand Up @@ -79,8 +79,8 @@ Options:
Enable relaxing which character is allowed in a tasklists

--relaxed-autolinks
Enable relaxing of autolink parsing, allow links to be recognized when in brackets
and allow all url schemes
Enable relaxing of autolink parsing, allow links to be recognized when in brackets and
allow all url schemes

--default-info-string <INFO>
Default value for fenced code block's info strings if none is given
Expand Down
13 changes: 13 additions & 0 deletions changelog.txt
Original file line number Diff line number Diff line change
@@ -1,3 +1,16 @@
### 0.23.0

* add traverse() demo example by @kaesluder in https://github.com/kivikakk/comrak/pull/370
* Avoid backslashes before a new block. by @jneem in https://github.com/kivikakk/comrak/pull/373
* Expand traverse and descendants documentation: Issue #369 by @kaesluder in https://github.com/kivikakk/comrak/pull/375
* Feat/inplace: add new parameter `--inplace` (`-i`) for in-place formatting by @bioinformatist in https://github.com/kivikakk/comrak/pull/377
* Change `relaxed-autolinks` to allow any url scheme by @digitalmoksha in https://github.com/kivikakk/comrak/pull/380
* Fix sourcepos for setext headers by @digitalmoksha in https://github.com/kivikakk/comrak/pull/381
* Add iterative search/replace example to examples and README.md by @kaesluder in https://github.com/kivikakk/comrak/pull/383
* un-Nix in CI. by @kivikakk in https://github.com/kivikakk/comrak/pull/384
* Return brackets in autolinks behavior back to cmark-gfm by @digitalmoksha in https://github.com/kivikakk/comrak/pull/386


### 0.22.0

* Fix broken docs link in README by @ohakutsu in https://github.com/kivikakk/comrak/pull/364
Expand Down
2 changes: 1 addition & 1 deletion fuzz/Cargo.lock

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

0 comments on commit 7d797e6

Please sign in to comment.