Merge tag 'v1.112.4'

Release 1.112.4
This commit is contained in:
link2xt
2023-03-31 01:13:56 +00:00
10 changed files with 20 additions and 14 deletions

View File

@@ -10,6 +10,11 @@
### Fixes
- Fix python bindings README documentation on installing the bindings from source.
## [1.112.4] - 2023-03-31
### Fixes
- Fix call to `auditwheel` in `scripts/run_all.sh`.
## [1.112.3] - 2023-03-30
### Fixes
@@ -2355,9 +2360,10 @@ For a full list of changes, please see our closed Pull Requests:
https://github.com/deltachat/deltachat-core-rust/pulls?q=is%3Apr+is%3Aclosed
[unreleased]: https://github.com/deltachat/deltachat-core-rust/compare/v1.112.2...HEAD
[unreleased]: https://github.com/deltachat/deltachat-core-rust/compare/v1.112.4...HEAD
[1.111.0]: https://github.com/deltachat/deltachat-core-rust/compare/v1.110.0...v1.111.0
[1.112.0]: https://github.com/deltachat/deltachat-core-rust/compare/v1.111.0...v1.112.0
[1.112.1]: https://github.com/deltachat/deltachat-core-rust/compare/v1.112.0...v1.112.1
[1.112.2]: https://github.com/deltachat/deltachat-core-rust/compare/v1.112.1...v1.112.2
[1.112.3]: https://github.com/deltachat/deltachat-core-rust/compare/v1.112.2...v1.112.3
[1.112.4]: https://github.com/deltachat/deltachat-core-rust/compare/v1.112.3...v1.112.4

10
Cargo.lock generated
View File

@@ -1114,7 +1114,7 @@ dependencies = [
[[package]]
name = "deltachat"
version = "1.112.3"
version = "1.112.4"
dependencies = [
"ansi_term",
"anyhow",
@@ -1188,7 +1188,7 @@ dependencies = [
[[package]]
name = "deltachat-jsonrpc"
version = "1.112.3"
version = "1.112.4"
dependencies = [
"anyhow",
"async-channel",
@@ -1211,7 +1211,7 @@ dependencies = [
[[package]]
name = "deltachat-repl"
version = "1.112.3"
version = "1.112.4"
dependencies = [
"ansi_term",
"anyhow",
@@ -1226,7 +1226,7 @@ dependencies = [
[[package]]
name = "deltachat-rpc-server"
version = "1.112.3"
version = "1.112.4"
dependencies = [
"anyhow",
"deltachat",
@@ -1250,7 +1250,7 @@ dependencies = [
[[package]]
name = "deltachat_ffi"
version = "1.112.3"
version = "1.112.4"
dependencies = [
"anyhow",
"deltachat",

View File

@@ -1,6 +1,6 @@
[package]
name = "deltachat"
version = "1.112.3"
version = "1.112.4"
edition = "2021"
license = "MPL-2.0"
rust-version = "1.65"

View File

@@ -1,6 +1,6 @@
[package]
name = "deltachat_ffi"
version = "1.112.3"
version = "1.112.4"
description = "Deltachat FFI"
edition = "2018"
readme = "README.md"

View File

@@ -1,6 +1,6 @@
[package]
name = "deltachat-jsonrpc"
version = "1.112.3"
version = "1.112.4"
description = "DeltaChat JSON-RPC API"
edition = "2021"
default-run = "deltachat-jsonrpc-server"

View File

@@ -55,5 +55,5 @@
},
"type": "module",
"types": "dist/deltachat.d.ts",
"version": "1.112.3"
"version": "1.112.4"
}

View File

@@ -1,6 +1,6 @@
[package]
name = "deltachat-repl"
version = "1.112.3"
version = "1.112.4"
license = "MPL-2.0"
edition = "2021"

View File

@@ -1,6 +1,6 @@
[package]
name = "deltachat-rpc-server"
version = "1.112.3"
version = "1.112.4"
description = "DeltaChat JSON-RPC server"
edition = "2021"
readme = "README.md"

View File

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

View File

@@ -33,7 +33,7 @@ unset DCC_NEW_TMP_EMAIL
# E.g. musllinux_1_1 does not have PyPy interpreters as of 2022-07-10
tox --workdir "$TOXWORKDIR" -e py37,py38,py39,py310,py311,pypy37,pypy38,pypy39 --skip-missing-interpreters true
auditwheel repair "$TOXWORKDIR/wheelhouse/deltachat*" -w "$TOXWORKDIR/wheelhouse"
auditwheel repair "$TOXWORKDIR"/wheelhouse/deltachat* -w "$TOXWORKDIR/wheelhouse"
echo -----------------------