diff --git a/CHANGELOG.md b/CHANGELOG.md index 6c2384e..27bd9d9 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,7 +2,10 @@ ## Unreleased +## 0.14.1 - Allow country TLDs in scheme-less links + - allow country TLDs in scheme-less links +- fix ts type for LinkDestination ## 0.14.0 - Bug fixes and scheme-less links diff --git a/Cargo.lock b/Cargo.lock index 12cde16..3ac54e6 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -171,7 +171,7 @@ dependencies = [ [[package]] name = "deltachat_message_parser" -version = "0.14.0" +version = "0.14.1" dependencies = [ "criterion", "nom", @@ -266,7 +266,7 @@ checksum = "8452105ba047068f40ff7093dd1d9da90898e63dd61736462e9cdda6a90ad3c3" [[package]] name = "message_parser_wasm" -version = "0.14.0" +version = "0.14.1" dependencies = [ "console_error_panic_hook", "deltachat_message_parser", diff --git a/Cargo.toml b/Cargo.toml index 59e559b..3ffde8b 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,7 +1,7 @@ [package] # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html name = "deltachat_message_parser" -version = "0.14.0" +version = "0.14.1" edition = "2018" license = "MPL-2.0" description = "email, link, hashtag, md and more - parsing for deltachat messages" diff --git a/message_parser_wasm/Cargo.toml b/message_parser_wasm/Cargo.toml index ad77065..af46e5d 100644 --- a/message_parser_wasm/Cargo.toml +++ b/message_parser_wasm/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "message_parser_wasm" -version = "0.14.0" +version = "0.14.1" edition = "2018" license = "MPL-2.0" description = "Parsing of Links, Email adresses, simple text formatting (markdown subset), user mentions, hashtags and more in DeltaChat messages."