From 794abd5bf689e8873afe82b27f38b5336aeca9ba Mon Sep 17 00:00:00 2001 From: "B. Petersen" Date: Sun, 26 Jul 2020 23:14:02 +0200 Subject: [PATCH 1/3] update changelog for 1.41 --- CHANGELOG.md | 29 +++++++++++++++++++++++++++++ 1 file changed, 29 insertions(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index 240a8b38a..8051d9703 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,34 @@ # Changelog +## 1.41.0 + +- new apis to initiate video chats #1718 #1735 + +- new apis `dc_msg_get_ephemeral_timer()` + and `dc_msg_get_ephemeral_timestamp()` + +- new api `dc_chatlist_get_summary2()` #1771 + +- improve IMAP handling #1703 #1704 + +- improve ephemeral messages #1696 #1705 + +- mark location-messages as auto-generated #1715 + +- multi-device avatar-sync #1716 #1717 + +- improve python bindings #1732 #1733 #1738 #1769 + +- Allow http scheme for DCACCOUNT urls #1770 + +- more fixes #1702 #1706 #1707 #1710 #1719 #1721 + #1723 #1734 #1740 #1744 #1748 #1760 #1766 #1773 #1765 + +- refactorings #1712 #1714 #1757 + +- update toolchains and dependencies #1726 #1736 #1737 #1742 #1743 #1746 + + ## 1.40.0 - introduce ephemeral messages #1540 #1680 #1683 #1684 #1691 #1692 From 27b4cb084eb855cc7e4d07c3c7f301a63e06ef3a Mon Sep 17 00:00:00 2001 From: "B. Petersen" Date: Sun, 26 Jul 2020 23:15:16 +0200 Subject: [PATCH 2/3] bump version to 1.41 --- Cargo.lock | 4 ++-- Cargo.toml | 4 ++-- deltachat-ffi/Cargo.toml | 2 +- 3 files changed, 5 insertions(+), 5 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 16db94d11..67c6e6d37 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -803,7 +803,7 @@ dependencies = [ [[package]] name = "deltachat" -version = "1.40.0" +version = "1.41.0" dependencies = [ "ansi_term 0.12.1", "anyhow", @@ -874,7 +874,7 @@ dependencies = [ [[package]] name = "deltachat_ffi" -version = "1.40.0" +version = "1.41.0" dependencies = [ "anyhow", "async-std", diff --git a/Cargo.toml b/Cargo.toml index e6f3a2cea..ce76f74c0 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,12 +1,12 @@ [package] name = "deltachat" -version = "1.40.0" +version = "1.41.0" authors = ["Delta Chat Developers (ML) "] edition = "2018" license = "MPL-2.0" [profile.release] -#lto = true +lto = true [dependencies] deltachat_derive = { path = "./deltachat_derive" } diff --git a/deltachat-ffi/Cargo.toml b/deltachat-ffi/Cargo.toml index 3a2c14402..4dc3f5623 100644 --- a/deltachat-ffi/Cargo.toml +++ b/deltachat-ffi/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "deltachat_ffi" -version = "1.40.0" +version = "1.41.0" description = "Deltachat FFI" authors = ["Delta Chat Developers (ML) "] edition = "2018" From beb134edaa2a0873f1c55c1c231a57cf5748dba1 Mon Sep 17 00:00:00 2001 From: "B. Petersen" Date: Tue, 28 Jul 2020 17:22:33 +0200 Subject: [PATCH 3/3] leave lto alone, this is set by the UIs as needed now, see #1775 --- Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Cargo.toml b/Cargo.toml index ce76f74c0..c73ea8be7 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -6,7 +6,7 @@ edition = "2018" license = "MPL-2.0" [profile.release] -lto = true +#lto = true [dependencies] deltachat_derive = { path = "./deltachat_derive" }