diff --git a/README.md b/README.md index cf780ac9..484066e9 100644 --- a/README.md +++ b/README.md @@ -17,7 +17,7 @@ Specify it as a requirement in `Cargo.toml`: ``` toml [dependencies] -comrak = "0.26" +comrak = "0.27" ``` Comrak's library supports Rust 1.62.1+. @@ -149,6 +149,9 @@ Options: --sourcepos Include source position attribute in HTML and XML output + --experimental-inline-sourcepos + Include inline sourcepos in HTML output, which is known to have issues + --ignore-setext Ignore setext headers diff --git a/changelog.txt b/changelog.txt index abfee07c..48f2b58b 100644 --- a/changelog.txt +++ b/changelog.txt @@ -1,3 +1,11 @@ +# [v0.27.0] - 19-08-2024 + +* Track line offsets for better accuracy of inline sourcepos by @digitalmoksha in https://github.com/kivikakk/comrak/pull/453 +* Add experimental-inline-sourcepos to cli options by @digitalmoksha in https://github.com/kivikakk/comrak/pull/455 + +Diff: https://github.com/kivikakk/comrak/compare/v0.26.0...v0.27.0 + + # [v0.26.0] - 12-07-2024 * Restore inline sourcepos as experimental. by @kivikakk in https://github.com/kivikakk/comrak/pull/444