diff --git a/CHANGELOG.md b/CHANGELOG.md index 00c2908694..6cd9e08f0e 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,16 @@ # Changelog +## [1.112.9] - 2023-05-12 + +### Fixes + +- Fetch at most 100 existing messages even if EXISTS was not received. +- Delete `smtp` rows when message sending is cancelled. + +### Changes + +- Improve SMTP logging. + ## [1.112.8] - 2023-04-20 ### Changes diff --git a/Cargo.lock b/Cargo.lock index 56a68e36d3..31d64f26e8 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1049,7 +1049,7 @@ dependencies = [ [[package]] name = "deltachat" -version = "1.112.8" +version = "1.112.9" dependencies = [ "ansi_term", "anyhow", @@ -1124,7 +1124,7 @@ dependencies = [ [[package]] name = "deltachat-jsonrpc" -version = "1.112.8" +version = "1.112.9" dependencies = [ "anyhow", "async-channel", @@ -1147,7 +1147,7 @@ dependencies = [ [[package]] name = "deltachat-repl" -version = "1.112.8" +version = "1.112.9" dependencies = [ "ansi_term", "anyhow", @@ -1162,7 +1162,7 @@ dependencies = [ [[package]] name = "deltachat-rpc-server" -version = "1.112.8" +version = "1.112.9" dependencies = [ "anyhow", "deltachat", @@ -1186,7 +1186,7 @@ dependencies = [ [[package]] name = "deltachat_ffi" -version = "1.112.8" +version = "1.112.9" dependencies = [ "anyhow", "deltachat", diff --git a/Cargo.toml b/Cargo.toml index 971208643b..946470d5d9 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "deltachat" -version = "1.112.8" +version = "1.112.9" edition = "2021" license = "MPL-2.0" rust-version = "1.64" diff --git a/deltachat-ffi/Cargo.toml b/deltachat-ffi/Cargo.toml index bf7c46d26f..f9b9afd1e1 100644 --- a/deltachat-ffi/Cargo.toml +++ b/deltachat-ffi/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "deltachat_ffi" -version = "1.112.8" +version = "1.112.9" description = "Deltachat FFI" edition = "2018" readme = "README.md" diff --git a/deltachat-jsonrpc/Cargo.toml b/deltachat-jsonrpc/Cargo.toml index 7947619daf..5c160d6e17 100644 --- a/deltachat-jsonrpc/Cargo.toml +++ b/deltachat-jsonrpc/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "deltachat-jsonrpc" -version = "1.112.8" +version = "1.112.9" description = "DeltaChat JSON-RPC API" edition = "2021" default-run = "deltachat-jsonrpc-server" diff --git a/deltachat-jsonrpc/typescript/package.json b/deltachat-jsonrpc/typescript/package.json index 8a266051de..1a30a2cbac 100644 --- a/deltachat-jsonrpc/typescript/package.json +++ b/deltachat-jsonrpc/typescript/package.json @@ -55,5 +55,5 @@ }, "type": "module", "types": "dist/deltachat.d.ts", - "version": "1.112.8" + "version": "1.112.9" } diff --git a/deltachat-repl/Cargo.toml b/deltachat-repl/Cargo.toml index 5632d5cd21..cd1c102fff 100644 --- a/deltachat-repl/Cargo.toml +++ b/deltachat-repl/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "deltachat-repl" -version = "1.112.8" +version = "1.112.9" license = "MPL-2.0" edition = "2021" diff --git a/deltachat-rpc-server/Cargo.toml b/deltachat-rpc-server/Cargo.toml index adf829c876..5cf9161a4e 100644 --- a/deltachat-rpc-server/Cargo.toml +++ b/deltachat-rpc-server/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "deltachat-rpc-server" -version = "1.112.8" +version = "1.112.9" description = "DeltaChat JSON-RPC server" edition = "2021" readme = "README.md" diff --git a/package.json b/package.json index 14bee11112..cf4c24ea96 100644 --- a/package.json +++ b/package.json @@ -60,5 +60,5 @@ "test:mocha": "mocha -r esm node/test/test.js --growl --reporter=spec --bail --exit" }, "types": "node/dist/index.d.ts", - "version": "1.112.8" + "version": "1.112.9" } diff --git a/release-date.in b/release-date.in index c0762cd07b..554b7f5f63 100644 --- a/release-date.in +++ b/release-date.in @@ -1 +1 @@ -2023-04-20 \ No newline at end of file +2023-05-12 \ No newline at end of file