From c5ccd88f79a942f731b71172e8d3b3917b6f61ce Mon Sep 17 00:00:00 2001 From: "B. Petersen" Date: Sun, 1 Mar 2020 21:43:57 +0100 Subject: [PATCH 1/3] changelog --- CHANGELOG.md | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index 87a472eed..9aeb30458 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,14 @@ # Changelog +## 1.26.0 + +- change generated key type back to RSA as shipped versions + have problems to encrypt to Ed25519 keys + +- update rPGP to encrypt reliably to Ed25519 keys; + one of the next versions can finally use Ed25519 keys then + + ## 1.25.0 - save traffic by downloading only messages that are really displayed #1236 From 42ebf49f9230e9e4fc166d40c11b89012bcee91a Mon Sep 17 00:00:00 2001 From: "B. Petersen" Date: Sun, 1 Mar 2020 21:46:26 +0100 Subject: [PATCH 2/3] bump version to 1.26.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 36ae8eeeb..eb63467c9 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -627,7 +627,7 @@ dependencies = [ [[package]] name = "deltachat" -version = "1.25.0" +version = "1.26.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.25.0" +version = "1.26.0" dependencies = [ - "deltachat 1.25.0", + "deltachat 1.26.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 92b0183d2..d211701cb 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "deltachat" -version = "1.25.0" +version = "1.26.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 8ae25f13b..c9470ddde 100644 --- a/deltachat-ffi/Cargo.toml +++ b/deltachat-ffi/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "deltachat_ffi" -version = "1.25.0" +version = "1.26.0" description = "Deltachat FFI" authors = ["Delta Chat Developers (ML) "] edition = "2018" From ab40495d5c5a7ea44dcdd8e6444c8deb29a41c65 Mon Sep 17 00:00:00 2001 From: "B. Petersen" Date: Sun, 1 Mar 2020 21:54:11 +0100 Subject: [PATCH 3/3] update rPGP in .toml, this was missed in #1321 --- Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Cargo.toml b/Cargo.toml index d211701cb..96e89ca17 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -12,7 +12,7 @@ lto = true deltachat_derive = { path = "./deltachat_derive" } libc = "0.2.51" -pgp = { version = "0.4.0", default-features = false } +pgp = { version = "0.4.1", default-features = false } hex = "0.4.0" sha2 = "0.8.0" rand = "0.7.0"