From 90626ea133ec25221366a8340da1bfddfab2a116 Mon Sep 17 00:00:00 2001 From: kivikakk <1915+kivikakk@users.noreply.github.com> Date: Fri, 22 Nov 2024 10:22:07 +0000 Subject: [PATCH 1/2] [skip test] update changelog --- Cargo.lock | 2 +- README.md | 8 ++++++-- changelog.txt | 18 ++++++++++++++++++ 3 files changed, 25 insertions(+), 3 deletions(-) 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..72bbf55f 100644 --- a/changelog.txt +++ b/changelog.txt @@ -1,3 +1,21 @@ +# [v0.30.0] - 22-11-2024 +## What's Changed +* Add 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 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 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 + +**Full Changelog**: 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 From 21ac833fc4ec42a7c20c62827a7849078a5f9756 Mon Sep 17 00:00:00 2001 From: Asherah Connor Date: Fri, 22 Nov 2024 21:28:20 +1100 Subject: [PATCH 2/2] changelog.txt: update. --- changelog.txt | 13 ++++++++----- 1 file changed, 8 insertions(+), 5 deletions(-) diff --git a/changelog.txt b/changelog.txt index 72bbf55f..4207a015 100644 --- a/changelog.txt +++ b/changelog.txt @@ -1,21 +1,24 @@ # [v0.30.0] - 22-11-2024 -## What's Changed -* Add class to task list items by @nicoburns in https://github.com/kivikakk/comrak/pull/468 + +* 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 for an infallible and compile-time-checked builder by @Veetaha in https://github.com/kivikakk/comrak/pull/466 +* 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 version to 3.0 by @Veetaha in https://github.com/kivikakk/comrak/pull/487 +* 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 -**Full Changelog**: https://github.com/kivikakk/comrak/compare/v0.29.0...v0.30.0 +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