Merge pull request #1536 from deltachat/prep-1.34

Prep 1.34
This commit is contained in:
bjoern
2020-05-27 20:33:53 +02:00
committed by GitHub
4 changed files with 20 additions and 4 deletions

View File

@@ -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

4
Cargo.lock generated
View File

@@ -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",

View File

@@ -1,6 +1,6 @@
[package]
name = "deltachat"
version = "1.33.0"
version = "1.34.0"
authors = ["Delta Chat Developers (ML) <delta@codespeak.net>"]
edition = "2018"
license = "MPL-2.0"

View File

@@ -1,6 +1,6 @@
[package]
name = "deltachat_ffi"
version = "1.33.0"
version = "1.34.0"
description = "Deltachat FFI"
authors = ["Delta Chat Developers (ML) <delta@codespeak.net>"]
edition = "2018"