prepare 1.96.0 (#3619)

after commit, on master make sure to:

   git tag -a 1.96.0
   git push origin 1.96.0
   git tag -a py-1.96.0
   git push origin py-1.96.0
This commit is contained in:
Simon Laux
2022-10-01 22:16:24 +02:00
committed by GitHub
parent b2f7a7bb2e
commit 1cd66bdf97
7 changed files with 14 additions and 11 deletions

View File

@@ -4,15 +4,18 @@
### API-Changes
### Changes
### Fixes
## 1.96.0
### Changes
- jsonrpc js client:
- Change package name from `deltachat-jsonrpc-client` to `@deltachat/jsonrpc-client`
- remove relative file dependency to it from `deltachat-node` (because it did not work anyway and broke the nix build of desktop)
- ci: add github ci action to upload it to our download server automaticaly on realease
### Fixes
## 1.95.0
### API-Changes

6
Cargo.lock generated
View File

@@ -893,7 +893,7 @@ dependencies = [
[[package]]
name = "deltachat"
version = "1.95.0"
version = "1.96.0"
dependencies = [
"ansi_term",
"anyhow",
@@ -965,7 +965,7 @@ dependencies = [
[[package]]
name = "deltachat-jsonrpc"
version = "1.95.0"
version = "1.96.0"
dependencies = [
"anyhow",
"async-channel",
@@ -993,7 +993,7 @@ dependencies = [
[[package]]
name = "deltachat_ffi"
version = "1.95.0"
version = "1.96.0"
dependencies = [
"anyhow",
"deltachat",

View File

@@ -1,6 +1,6 @@
[package]
name = "deltachat"
version = "1.95.0"
version = "1.96.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.95.0"
version = "1.96.0"
description = "Deltachat FFI"
authors = ["Delta Chat Developers (ML) <delta@codespeak.net>"]
edition = "2018"

View File

@@ -1,6 +1,6 @@
[package]
name = "deltachat-jsonrpc"
version = "1.95.0"
version = "1.96.0"
description = "DeltaChat JSON-RPC API"
authors = ["Delta Chat Developers (ML) <delta@codespeak.net>"]
edition = "2021"

View File

@@ -47,5 +47,5 @@
},
"type": "module",
"types": "dist/deltachat.d.ts",
"version": "1.95.0"
"version": "1.96.0"
}

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.95.0"
"version": "1.96.0"
}