diff --git a/Cargo.lock b/Cargo.lock index 0d0c42f8..78584e7c 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -155,7 +155,7 @@ dependencies = [ [[package]] name = "comrak" -version = "0.32.0" +version = "0.33.0" dependencies = [ "arbitrary", "bon", diff --git a/README.md b/README.md index d371cae6..d496052d 100644 --- a/README.md +++ b/README.md @@ -17,7 +17,7 @@ Specify it as a requirement in `Cargo.toml`: ``` toml [dependencies] -comrak = "0.32" +comrak = "0.33" ``` Comrak's library supports Rust 1.62.1+. diff --git a/changelog.txt b/changelog.txt index 5e49028d..c8ca85d0 100644 --- a/changelog.txt +++ b/changelog.txt @@ -1,11 +1,23 @@ +# [v0.33.0] - 04-01-2025 + +Happy new year! Thanks to @nicoburns for these changes, enabling much faster +compiles if you don't need the builders! + +* Eliminate `regex` and `once_cell` dependencies. by @nicoburns in https://github.com/kivikakk/comrak/pull/514 +* Make bon builders optional by @nicoburns in https://github.com/kivikakk/comrak/pull/515 +* Make options structs exhaustive by @nicoburns in https://github.com/kivikakk/comrak/pull/516 + +Diff: https://github.com/kivikakk/comrak/compare/v0.32.0...v0.33.0 + + # [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 +* Account for front matter when calculating `sourcepos` 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 +* Make `wikilinks_title_after_pipe` override `wikilinks_title_before_pipe` 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