From 8640bd5ee61ae8fecb012a0d54a95e28965e408a Mon Sep 17 00:00:00 2001 From: "B. Petersen" Date: Wed, 27 May 2020 19:31:51 +0200 Subject: [PATCH 1/2] update changelog --- CHANGELOG.md | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index fcb485f98..b9dd5e4de 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,21 @@ # Changelog +## 1.34.0 + +- new api for io, thread and event handling #1356, + see the example atop of `deltachat.h` to get an overview + +- LOTS of speed improvements due to async processing #1356 + +- enable WAL mode for sqlite #1492 + +- process incoming messages in bulk #1527 + +- improve finding out the sent-folder #1488 + +- several bug fixes + + ## 1.33.0 - let `dc_set_muted()` also mute one-to-one chats #1470 From 0a4d6fe09b4041c52439c231cd383884b2987db0 Mon Sep 17 00:00:00 2001 From: "B. Petersen" Date: Wed, 27 May 2020 19:33:27 +0200 Subject: [PATCH 2/2] bump version to 1.34.0 --- Cargo.lock | 4 ++-- Cargo.toml | 2 +- deltachat-ffi/Cargo.toml | 2 +- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index d9ef44466..797cc32b4 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -709,7 +709,7 @@ dependencies = [ [[package]] name = "deltachat" -version = "1.33.0" +version = "1.34.0" dependencies = [ "ansi_term 0.12.1", "anyhow", @@ -780,7 +780,7 @@ dependencies = [ [[package]] name = "deltachat_ffi" -version = "1.33.0" +version = "1.34.0" dependencies = [ "anyhow", "async-std", diff --git a/Cargo.toml b/Cargo.toml index c61569fe3..f79e9bd52 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "deltachat" -version = "1.33.0" +version = "1.34.0" authors = ["Delta Chat Developers (ML) "] edition = "2018" license = "MPL-2.0" diff --git a/deltachat-ffi/Cargo.toml b/deltachat-ffi/Cargo.toml index 8fa08fab8..d00fa6678 100644 --- a/deltachat-ffi/Cargo.toml +++ b/deltachat-ffi/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "deltachat_ffi" -version = "1.33.0" +version = "1.34.0" description = "Deltachat FFI" authors = ["Delta Chat Developers (ML) "] edition = "2018"