diff --git a/README.md b/README.md index cdeb220e..30f3d26f 100644 --- a/README.md +++ b/README.md @@ -17,7 +17,7 @@ Specify it as a requirement in `Cargo.toml`: ``` toml [dependencies] -comrak = "0.24" +comrak = "0.25" ``` Comrak's library supports Rust 1.62.1+. @@ -59,7 +59,7 @@ Options: -c, --config-file Path to config file containing command-line arguments, or 'none' - [default: /Users/kivikakk/.config/comrak/config] + [default: /home/runner/.config/comrak/config] -i, --inplace To perform an in-place formatting diff --git a/changelog.txt b/changelog.txt index 42f999be..1d5aea47 100644 --- a/changelog.txt +++ b/changelog.txt @@ -1,3 +1,21 @@ +# [v0.25.0] - 12-07-2024 +## What's Changed +* Discord-flavored Markdown by @liamwhite in https://github.com/kivikakk/comrak/pull/421 +* nodes: add From impls for AstNode. by @kivikakk in https://github.com/kivikakk/comrak/pull/424 +* AST validation by @yannham in https://github.com/kivikakk/comrak/pull/425 +* Address autolink edge cases. by @kivikakk in https://github.com/kivikakk/comrak/pull/426 +* shortcodes: capture all known aliases. by @kivikakk in https://github.com/kivikakk/comrak/pull/427 +* Support both upstream CommonMark and GFM's differences in the base spec. by @kivikakk in https://github.com/kivikakk/comrak/pull/428 +* cm: count ol items from start of each list. by @kivikakk in https://github.com/kivikakk/comrak/pull/429 +* arena_tree: panic if iterator invalidation causes trouble. by @kivikakk in https://github.com/kivikakk/comrak/pull/437 +* broken reflink callback updates & big cleanup. by @kivikakk in https://github.com/kivikakk/comrak/pull/438 +* Inline sourcepos fixes. by @kivikakk in https://github.com/kivikakk/comrak/pull/439 + +## New Contributors +* @liamwhite made their first contribution in https://github.com/kivikakk/comrak/pull/421 +* @yannham made their first contribution in https://github.com/kivikakk/comrak/pull/425 + +**Full Changelog**: https://github.com/kivikakk/comrak/compare/v0.24.1...v0.25.0 # [v0.24.1] - 19-05-2024 ## What's Changed * Add GH_TOKEN to release workflow by @digitalmoksha in https://github.com/kivikakk/comrak/pull/418