From 5c36fb29eda965c1bebd0e240a60d913b2c41779 Mon Sep 17 00:00:00 2001 From: "B. Petersen" Date: Thu, 20 Feb 2020 23:47:23 +0100 Subject: [PATCH 1/3] update python version examples --- set_core_version.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/set_core_version.py b/set_core_version.py index 785b31561..86b5c40ef 100644 --- a/set_core_version.py +++ b/set_core_version.py @@ -35,7 +35,7 @@ if __name__ == "__main__": if len(sys.argv) < 2: for x in ("Cargo.toml", "deltachat-ffi/Cargo.toml"): print("{}: {}".format(x, read_toml_version(x))) - raise SystemExit("need argument: new version, example 1.0.0-beta.27") + raise SystemExit("need argument: new version, example: 1.25.0") newversion = sys.argv[1] if newversion.count(".") < 2: raise SystemExit("need at least two dots in version") @@ -45,7 +45,7 @@ if __name__ == "__main__": assert core_toml == ffi_toml, (core_toml, ffi_toml) for line in open("CHANGELOG.md"): - ## 1.0.0-beta5 + ## 1.25.0 if line.startswith("## "): if line[2:].strip().startswith(newversion): break From a59d368101f52ccdd2d96d4dff5f8625cc87d672 Mon Sep 17 00:00:00 2001 From: "B. Petersen" Date: Thu, 20 Feb 2020 23:47:43 +0100 Subject: [PATCH 2/3] changelog --- CHANGELOG.md | 47 +++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 47 insertions(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index f3efb271c..87a472eed 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,52 @@ # Changelog +## 1.25.0 + +- save traffic by downloading only messages that are really displayed #1236 + +- change generated key type to Ed25519, these keys are much shorter + than RSA keys, which results in saving traffic and speed improvements #1287 + +- improve key handling #1237 #1240 #1242 #1247 + +- mute handling, apis are dc_set_chat_mute_duration() + dc_chat_is_muted() and dc_chat_get_remaining_mute_duration() #1143 + +- pinning chats, new apis are dc_set_chat_visibility() and + dc_chat_get_visibility() #1248 + +- add dc_provider_new_from_email() api that queries the new, integrated + provider-database #1207 + +- account creation by scanning a qr code + in the DCACCOUNT scheme (https://mailadm.readthedocs.io), + new api is dc_set_config_from_qr() #1249 + +- if possible, dc_join_securejoin(), returns the new chat-id immediately + and does the handshake in background #1225 + +- update imap and smtp dependencies #1115 + +- check for MOVE capability before using MOVE command #1263 + +- allow inline attachments from RFC 2183 #1280 + +- fix updating names from incoming mails #1298 + +- fix error messages shown on import #1234 + +- directly attempt to re-connect if the smtp connection is maybe stale #1296 + +- improve adding group members #1291 + +- improve rust-api #1261 + +- cleanup #1302 #1283 #1282 #1276 #1270-#1274 #1267 #1258-#1260 + #1257 #1239 #1231 #1224 + +- update spec #1286 #1291 + + ## 1.0.0-beta.24 - fix oauth2/gmail bug introduced in beta23 (not used in releases) #1219 From a0b2a692d0a61cb9ad847ea12a2dc4c0dda6ff92 Mon Sep 17 00:00:00 2001 From: "B. Petersen" Date: Thu, 20 Feb 2020 23:49:49 +0100 Subject: [PATCH 3/3] bump version to 1.25.0 --- Cargo.lock | 6 +++--- Cargo.toml | 2 +- deltachat-ffi/Cargo.toml | 2 +- 3 files changed, 5 insertions(+), 5 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index a7e1cadd0..80f9e4478 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -627,7 +627,7 @@ dependencies = [ [[package]] name = "deltachat" -version = "1.0.0-beta.24" +version = "1.25.0" dependencies = [ "async-imap 0.2.0 (registry+https://github.com/rust-lang/crates.io-index)", "async-native-tls 0.3.2 (registry+https://github.com/rust-lang/crates.io-index)", @@ -693,9 +693,9 @@ dependencies = [ [[package]] name = "deltachat_ffi" -version = "1.0.0-beta.24" +version = "1.25.0" dependencies = [ - "deltachat 1.0.0-beta.24", + "deltachat 1.25.0", "failure 0.1.6 (registry+https://github.com/rust-lang/crates.io-index)", "human-panic 1.0.1 (registry+https://github.com/rust-lang/crates.io-index)", "libc 0.2.66 (registry+https://github.com/rust-lang/crates.io-index)", diff --git a/Cargo.toml b/Cargo.toml index a1d283103..92b0183d2 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "deltachat" -version = "1.0.0-beta.24" +version = "1.25.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 92c994811..8ae25f13b 100644 --- a/deltachat-ffi/Cargo.toml +++ b/deltachat-ffi/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "deltachat_ffi" -version = "1.0.0-beta.24" +version = "1.25.0" description = "Deltachat FFI" authors = ["Delta Chat Developers (ML) "] edition = "2018"