Merge pull request #1659 from deltachat/prep-1.39

prepare 1.39
This commit is contained in:
bjoern
2020-06-23 19:01:36 +02:00
committed by GitHub
4 changed files with 13 additions and 4 deletions

View File

@@ -1,5 +1,12 @@
# Changelog # Changelog
## 1.39.0
- fix handling of `mvbox_watch`, `sentbox_watch`, `inbox_watch` #1654 #1658
- fix potential panics, update dependencies #1650 #1655
## 1.38.0 ## 1.38.0
- fix sorting, esp. for multi-device - fix sorting, esp. for multi-device
@@ -21,6 +28,8 @@
- parse ndn (network delivery notification) reports - parse ndn (network delivery notification) reports
and report failed messages as such #1552 #1622 #1630 and report failed messages as such #1552 #1622 #1630
- add oauth2 support for gsuite domains #1626
- read image orientation from exif before recoding #1619 - read image orientation from exif before recoding #1619
- improve logging #1593 #1598 - improve logging #1593 #1598

4
Cargo.lock generated
View File

@@ -822,7 +822,7 @@ dependencies = [
[[package]] [[package]]
name = "deltachat" name = "deltachat"
version = "1.38.0" version = "1.39.0"
dependencies = [ dependencies = [
"ansi_term 0.12.1", "ansi_term 0.12.1",
"anyhow", "anyhow",
@@ -894,7 +894,7 @@ dependencies = [
[[package]] [[package]]
name = "deltachat_ffi" name = "deltachat_ffi"
version = "1.38.0" version = "1.39.0"
dependencies = [ dependencies = [
"anyhow", "anyhow",
"async-std", "async-std",

View File

@@ -1,6 +1,6 @@
[package] [package]
name = "deltachat" name = "deltachat"
version = "1.38.0" version = "1.39.0"
authors = ["Delta Chat Developers (ML) <delta@codespeak.net>"] authors = ["Delta Chat Developers (ML) <delta@codespeak.net>"]
edition = "2018" edition = "2018"
license = "MPL-2.0" license = "MPL-2.0"

View File

@@ -1,6 +1,6 @@
[package] [package]
name = "deltachat_ffi" name = "deltachat_ffi"
version = "1.38.0" version = "1.39.0"
description = "Deltachat FFI" description = "Deltachat FFI"
authors = ["Delta Chat Developers (ML) <delta@codespeak.net>"] authors = ["Delta Chat Developers (ML) <delta@codespeak.net>"]
edition = "2018" edition = "2018"