diff --git a/CHANGELOG.md b/CHANGELOG.md index de234e439..44dba5908 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,18 @@ # Changelog +## 1.65.0 + +### Changes +- python: add mypy support and some type hints #2809 + +### Fixes +- do not disable ephemeral timer when downloading a message partially #2811 +- apply existing ephemeral timer also to partially downloaded messages; + after full download, the ephemeral timer starts over #2811 +- replace user-visible error on verification failure with warning; + the error is logged to the corresponding chat anyway #2808 + + ## 1.64.0 ### Fixes diff --git a/Cargo.lock b/Cargo.lock index cc59b61d4..5ec131ba1 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1072,7 +1072,7 @@ dependencies = [ [[package]] name = "deltachat" -version = "1.64.0" +version = "1.65.0" dependencies = [ "ansi_term", "anyhow", @@ -1152,7 +1152,7 @@ dependencies = [ [[package]] name = "deltachat_ffi" -version = "1.64.0" +version = "1.65.0" dependencies = [ "anyhow", "async-std", diff --git a/Cargo.toml b/Cargo.toml index ca2a3b93a..9226c29f0 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "deltachat" -version = "1.64.0" +version = "1.65.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 fbcb1f92e..1223a4b3a 100644 --- a/deltachat-ffi/Cargo.toml +++ b/deltachat-ffi/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "deltachat_ffi" -version = "1.64.0" +version = "1.65.0" description = "Deltachat FFI" authors = ["Delta Chat Developers (ML) "] edition = "2018"