diff --git a/Cargo.lock b/Cargo.lock index 3d9765eb..ea973428 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -155,7 +155,7 @@ dependencies = [ [[package]] name = "comrak" -version = "0.29.0" +version = "0.30.0" dependencies = [ "arbitrary", "bon", diff --git a/README.md b/README.md index 0318c34a..f9f1b188 100644 --- a/README.md +++ b/README.md @@ -17,7 +17,7 @@ Specify it as a requirement in `Cargo.toml`: ``` toml [dependencies] -comrak = "0.29" +comrak = "0.30" ``` Comrak's library supports Rust 1.62.1+. @@ -91,6 +91,9 @@ Options: Enable relaxing of autolink parsing, allow links to be recognized when in brackets and allow all url schemes + --tasklist-classes + Output classes on tasklist elements so that they can be styled with CSS + --default-info-string Default value for fenced code block's info strings if none is given @@ -113,7 +116,8 @@ Options: [possible values: strikethrough, tagfilter, table, autolink, tasklist, superscript, footnotes, description-lists, multiline-block-quotes, math-dollars, math-code, - wikilinks-title-after-pipe, wikilinks-title-before-pipe, underline, spoiler, greentext] + wikilinks-title-after-pipe, wikilinks-title-before-pipe, underline, subscript, spoiler, + greentext] -t, --to Specify output format diff --git a/changelog.txt b/changelog.txt index 4318f03c..4207a015 100644 --- a/changelog.txt +++ b/changelog.txt @@ -1,3 +1,24 @@ +# [v0.30.0] - 22-11-2024 + +* Add `task-list-item` class to task list items by @nicoburns in https://github.com/kivikakk/comrak/pull/468 +* Add option for specifying a minimum width of ordered lists by @edwar4rd in https://github.com/kivikakk/comrak/pull/465 +* Use `bon` for an infallible and compile-time-checked builder by @Veetaha in https://github.com/kivikakk/comrak/pull/466 +* Add support for image and link URL rewriting by @liamwhite in https://github.com/kivikakk/comrak/pull/481 +* Unwrap Mutex from broken_link_callback by @liamwhite in https://github.com/kivikakk/comrak/pull/484 +* Prevent panic in format_item by @silverpill in https://github.com/kivikakk/comrak/pull/486 +* Bump `bon` version to 3.0 by @Veetaha in https://github.com/kivikakk/comrak/pull/487 +* Add support for subscript extension by @liamwhite in https://github.com/kivikakk/comrak/pull/488 +* Add macro for character tables by @liamwhite in https://github.com/kivikakk/comrak/pull/490 + +## New Contributors + +* @nicoburns made their first contribution in https://github.com/kivikakk/comrak/pull/468 +* @edwar4rd made their first contribution in https://github.com/kivikakk/comrak/pull/465 +* @Veetaha made their first contribution in https://github.com/kivikakk/comrak/pull/466 + +Diff: https://github.com/kivikakk/comrak/compare/v0.29.0...v0.30.0 + + # [v0.29.0] - 10-10-2024 * Add support for backslash escape in wikilinks by @digitalmoksha in https://github.com/kivikakk/comrak/pull/471