diff --git a/CHANGELOG.md b/CHANGELOG.md index c1fd516dd..c90ad11e7 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,14 @@ # Changelog + +## 1.58.0 + +### Fixes + +- move WAL file together with database + and avoid using data if the database was not closed correctly before #2583 + + ## 1.57.0 ### API Changes diff --git a/Cargo.lock b/Cargo.lock index e96f7187e..cc4dd2f5f 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1107,7 +1107,7 @@ dependencies = [ [[package]] name = "deltachat" -version = "1.57.0" +version = "1.58.0" dependencies = [ "ansi_term", "anyhow", @@ -1185,7 +1185,7 @@ dependencies = [ [[package]] name = "deltachat_ffi" -version = "1.57.0" +version = "1.58.0" dependencies = [ "anyhow", "async-std", diff --git a/Cargo.toml b/Cargo.toml index f11a339ec..cb6f9e3ae 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "deltachat" -version = "1.57.0" +version = "1.58.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 ceb2f461d..a34a27ba6 100644 --- a/deltachat-ffi/Cargo.toml +++ b/deltachat-ffi/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "deltachat_ffi" -version = "1.57.0" +version = "1.58.0" description = "Deltachat FFI" authors = ["Delta Chat Developers (ML) "] edition = "2018"