release 1.90.0 (#3512)

* update changelog for 1.90.0

* bump version to 1.90.0
This commit is contained in:
bjoern
2022-07-16 23:54:02 +02:00
committed by GitHub
parent 9f2100deee
commit d771b522b7
5 changed files with 13 additions and 5 deletions

View File

@@ -2,11 +2,19 @@
## Unreleased
### Changes
### Fixes
## 1.90.0
### Changes
- handle drafts from mailto links in scanned QR #3492
- do not overflow ratelimiter leaky bucket #3496
- (AEAP) Add device message after you changed your address #3505
- (AEAP) Revert #3491, instead only replace contacts in verified groups #3510
- improve python bindings and tests #3502 #3503
### Fixes
- don't squash text parts of NDN into attachments #3497

4
Cargo.lock generated
View File

@@ -752,7 +752,7 @@ dependencies = [
[[package]]
name = "deltachat"
version = "1.89.0"
version = "1.90.0"
dependencies = [
"ansi_term",
"anyhow",
@@ -832,7 +832,7 @@ dependencies = [
[[package]]
name = "deltachat_ffi"
version = "1.89.0"
version = "1.90.0"
dependencies = [
"anyhow",
"deltachat",

View File

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

View File

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

View File

@@ -60,5 +60,5 @@
"test:mocha": "mocha -r esm node/test/test.js --growl --reporter=spec --bail"
},
"types": "node/dist/index.d.ts",
"version": "1.89.0"
"version": "1.90.0"
}