prep beta21

This commit is contained in:
holger krekel
2019-12-20 14:52:06 +01:00
parent c9f6e31ca9
commit b0694bcf2c
4 changed files with 18 additions and 6 deletions

View File

@@ -1,5 +1,17 @@
# Changelog # Changelog
## 1.0.0-beta.21
- #1078 #1082 ensure RFC compliance by producing 78 column lines for
encoded attachments.
- #1080 don't recreate and thus break group membership if an unknown
sender (or mailer-daemon) sends a message referencing the group chat
- #1081 #1079 some internal cleanups
- update imap-proto dependency, to fix yandex/oauth
## 1.0.0-beta.20 ## 1.0.0-beta.20
- #1074 fix OAUTH2/gmail - #1074 fix OAUTH2/gmail

8
Cargo.lock generated
View File

@@ -658,7 +658,7 @@ dependencies = [
[[package]] [[package]]
name = "deltachat" name = "deltachat"
version = "1.0.0-beta.20" version = "1.0.0-beta.21"
dependencies = [ dependencies = [
"async-imap 0.1.1 (git+https://github.com/async-email/async-imap?branch=dcc-stable)", "async-imap 0.1.1 (git+https://github.com/async-email/async-imap?branch=dcc-stable)",
"async-native-tls 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)", "async-native-tls 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)",
@@ -735,9 +735,9 @@ dependencies = [
[[package]] [[package]]
name = "deltachat_ffi" name = "deltachat_ffi"
version = "1.0.0-beta.20" version = "1.0.0-beta.21"
dependencies = [ dependencies = [
"deltachat 1.0.0-beta.20", "deltachat 1.0.0-beta.21",
"deltachat-provider-database 0.2.1 (registry+https://github.com/rust-lang/crates.io-index)", "deltachat-provider-database 0.2.1 (registry+https://github.com/rust-lang/crates.io-index)",
"failure 0.1.6 (registry+https://github.com/rust-lang/crates.io-index)", "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)", "human-panic 1.0.1 (registry+https://github.com/rust-lang/crates.io-index)",
@@ -1418,7 +1418,7 @@ dependencies = [
[[package]] [[package]]
name = "imap-proto" name = "imap-proto"
version = "0.9.1" version = "0.9.1"
source = "git+https://github.com/djc/tokio-imap#2b8701b83c50085b7ffcdf26a95146b91f93a6d5" source = "git+https://github.com/djc/tokio-imap#de420791b4e240242592616938407b742454c46c"
dependencies = [ dependencies = [
"nom 5.0.1 (registry+https://github.com/rust-lang/crates.io-index)", "nom 5.0.1 (registry+https://github.com/rust-lang/crates.io-index)",
] ]

View File

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

View File

@@ -1,6 +1,6 @@
[package] [package]
name = "deltachat_ffi" name = "deltachat_ffi"
version = "1.0.0-beta.20" version = "1.0.0-beta.21"
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"