diff --git a/Cargo.lock b/Cargo.lock index bdb6805b..3141ab2e 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -155,7 +155,7 @@ dependencies = [ [[package]] name = "comrak" -version = "0.31.0" +version = "0.32.0" dependencies = [ "arbitrary", "bon", diff --git a/README.md b/README.md index ed681b82..d371cae6 100644 --- a/README.md +++ b/README.md @@ -17,7 +17,7 @@ Specify it as a requirement in `Cargo.toml`: ``` toml [dependencies] -comrak = "0.31" +comrak = "0.32" ``` Comrak's library supports Rust 1.62.1+. diff --git a/changelog.txt b/changelog.txt index 7840d407..5e49028d 100644 --- a/changelog.txt +++ b/changelog.txt @@ -1,3 +1,23 @@ +# [v0.32.0] - 17-12-2024 + +* rust-toolchain: remove by @charlottia in https://github.com/kivikakk/comrak/pull/493 +* Account for front matter when calculating by @SamWilsn in https://github.com/kivikakk/comrak/pull/494 +* callbacks: constrain to input lifetime by @liamwhite in https://github.com/kivikakk/comrak/pull/499 +* Refactor open_new_blocks by @digitalmoksha in https://github.com/kivikakk/comrak/pull/505 +* Refactors open_new_blocks by lifting out handlers by @digitalmoksha in https://github.com/kivikakk/comrak/pull/506 +* Make override by @SamWilsn in https://github.com/kivikakk/comrak/pull/500 +* Detect ending front matter delimiter at EOF by @kivikakk in https://github.com/kivikakk/comrak/pull/508 +* Add Raw Node by @wakairo in https://github.com/kivikakk/comrak/pull/511 + +## New Contributors + +* @charlottia made their first contribution in https://github.com/kivikakk/comrak/pull/493 +* @SamWilsn made their first contribution in https://github.com/kivikakk/comrak/pull/494 +* @wakairo made their first contribution in https://github.com/kivikakk/comrak/pull/511 + +Diff: https://github.com/kivikakk/comrak/compare/v0.31.0...v0.32.0 + + # [v0.31.0] - 26-11-2024 * Enhance description lists by @digitalmoksha in https://github.com/kivikakk/comrak/pull/462