diff --git a/.circleci/config.yml b/.circleci/config.yml index 2739e1ec14..07e5aba015 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -53,8 +53,6 @@ workflows: filters: branches: only: master - #tags: - # only: /.*/ - upload_docs_wheels: requires: @@ -63,12 +61,8 @@ workflows: filters: branches: only: master - tags: - only: /.*/ - build_doxygen: filters: branches: only: master - tags: - only: /.*/ diff --git a/CHANGELOG.md b/CHANGELOG.md index 140fe6dc22..3337068eaa 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,29 @@ # Changelog +## 1.52.0 + +- database library changed from rusqlite to sqlx #2089 #2331 #2336 #2340 + +- add alias support: UIs should check for `dc_msg_get_override_sender_name()` + also in single-chats now and display divergent names and avatars #2297 + +- parse blockquote-tags for better quote detection #2313 + +- ignore unknown classical emails from spam folder #2311 + +- support "Mixed Up” encryption repairing #2321 + +- fix single chat search #2344 + +- fix nightly clippy and rustc errors #2341 + +- update dependencies #2350 + +- improve ci #2342 + +- improve python bindings #2332 #2326 + + ## 1.51.0 - breaking change: You have to call `dc_stop_io()`/`dc_start_io()` diff --git a/Cargo.lock b/Cargo.lock index bcb0621138..7904bd2afe 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1160,7 +1160,7 @@ dependencies = [ [[package]] name = "deltachat" -version = "1.51.0" +version = "1.52.0" dependencies = [ "ansi_term 0.12.1", "anyhow", @@ -1229,7 +1229,7 @@ dependencies = [ [[package]] name = "deltachat_ffi" -version = "1.51.0" +version = "1.52.0" dependencies = [ "anyhow", "async-std", diff --git a/Cargo.toml b/Cargo.toml index 2e2e317624..21d2239d7d 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "deltachat" -version = "1.51.0" +version = "1.52.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 45f81d8a63..345fb02754 100644 --- a/deltachat-ffi/Cargo.toml +++ b/deltachat-ffi/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "deltachat_ffi" -version = "1.51.0" +version = "1.52.0" description = "Deltachat FFI" authors = ["Delta Chat Developers (ML) "] edition = "2018"