diff --git a/Cargo.lock b/Cargo.lock index 4506bfa4..d74a1a8e 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -126,7 +126,7 @@ dependencies = [ [[package]] name = "comrak" -version = "0.15.0" +version = "0.16.0" dependencies = [ "clap", "emojis", diff --git a/Cargo.toml b/Cargo.toml index ce3b41d9..67d8b3cc 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "comrak" -version = "0.15.0" +version = "0.16.0" authors = ["Asherah Connor "] description = "A 100% CommonMark-compatible GitHub Flavored Markdown parser and formatter" documentation = "https://docs.rs/comrak" @@ -42,7 +42,7 @@ slug = "0.1.4" emojis = { version = "0.5.2", optional = true } [dev-dependencies] -ntest = "*" +ntest = "0.9" [target.'cfg(not(target_arch="wasm32"))'.dev-dependencies] propfuzz = "0.0.1" diff --git a/README.md b/README.md index 3c302197..ab19db0d 100644 --- a/README.md +++ b/README.md @@ -22,7 +22,7 @@ Specify it as a requirement in `Cargo.toml`: ``` toml [dependencies] -comrak = "0.15" +comrak = "0.16" ``` Comrak supports Rust stable. diff --git a/changelog.txt b/changelog.txt index 914dcb3d..ad68e335 100644 --- a/changelog.txt +++ b/changelog.txt @@ -1,3 +1,14 @@ +### 0.16.0 + +* Track which symbol was used to mark task item as checked by @felipesere in https://github.com/kivikakk/comrak/pull/252 +* improve tagfilter performance by @fiji-flo in https://github.com/kivikakk/comrak/pull/256 +* [ShortCode] Add support for gemojis via shortcodes extension by @eklipse2k8 in https://github.com/kivikakk/comrak/pull/260 +* "mod three rule" fix by @kivikakk in https://github.com/kivikakk/comrak/pull/262 +* Add `shortcodes` to the README by @gjtorikian in https://github.com/kivikakk/comrak/pull/263 +* Cargo.toml: remove timebomb by @kivikakk in https://github.com/kivikakk/comrak/pull/264 +* Add custom heading adapter by @lucperkins in https://github.com/kivikakk/comrak/pull/266 +* Keep track of "^" symbol when within footnotes by @gjtorikian in https://github.com/kivikakk/comrak/pull/274 + ### 0.15.0 * table: fix start_line of Table itself by @kivikakk in https://github.com/kivikakk/comrak/pull/231