diff --git a/CHANGELOG.md b/CHANGELOG.md index 50619d939..6a70c7df2 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,18 @@ # Changelog +## 1.60.0 + +### Added +- add device message to warn about QUOTA #2621 +- add SOCKS5 support #2474 #2620 + +### Changes +- don't emit multiple events with the same import/export progress number #2639 +- reduce message length limit to 5000 chars #2615 + +### Fixes +- keep event emitter from closing when there are no accounts #2636 + ## 1.59.0 ### Added diff --git a/Cargo.lock b/Cargo.lock index cdac87796..8839933c6 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1121,7 +1121,7 @@ dependencies = [ [[package]] name = "deltachat" -version = "1.59.0" +version = "1.60.0" dependencies = [ "ansi_term", "anyhow", @@ -1201,7 +1201,7 @@ dependencies = [ [[package]] name = "deltachat_ffi" -version = "1.59.0" +version = "1.60.0" dependencies = [ "anyhow", "async-std", diff --git a/Cargo.toml b/Cargo.toml index 6f6809cf7..b628ae29e 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "deltachat" -version = "1.59.0" +version = "1.60.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 1387bd460..e446fffcc 100644 --- a/deltachat-ffi/Cargo.toml +++ b/deltachat-ffi/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "deltachat_ffi" -version = "1.59.0" +version = "1.60.0" description = "Deltachat FFI" authors = ["Delta Chat Developers (ML) "] edition = "2018"