diff --git a/README.md b/README.md index b2b241e7..0318c34a 100644 --- a/README.md +++ b/README.md @@ -17,7 +17,7 @@ Specify it as a requirement in `Cargo.toml`: ``` toml [dependencies] -comrak = "0.28" +comrak = "0.29" ``` Comrak's library supports Rust 1.62.1+. diff --git a/changelog.txt b/changelog.txt index 20537d8a..4318f03c 100644 --- a/changelog.txt +++ b/changelog.txt @@ -1,3 +1,10 @@ +# [v0.29.0] - 10-10-2024 + +* Add support for backslash escape in wikilinks by @digitalmoksha in https://github.com/kivikakk/comrak/pull/471 + +Diff: https://github.com/kivikakk/comrak/compare/v0.28.0...v0.29.0 + + # [v0.28.0] - 05-09-2024 * Add a render option to render the image as
by @JmPotato in https://github.com/kivikakk/comrak/pull/458 @@ -67,7 +74,7 @@ Diff: https://github.com/kivikakk/comrak/compare/v0.25.0...v0.26.0 * Inline sourcepos is no longer reported in HTML output. It remains in the AST and in XML output, but it is not reliable. See the PR for details. * Link sourcepos is slightly better than it was when it spans multiple lines. - + ## New Contributors * @liamwhite made their first contribution in https://github.com/kivikakk/comrak/pull/421