diff --git a/CHANGELOG.md b/CHANGELOG.md index 92b703a4f..a796e6a5c 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,33 @@ # Changelog +## [1.137.2] - 2024-04-05 + +### API-Changes + +- [**breaking**] Increase Minimum Supported Rust Version to 1.77.0. + +### Features / Changes + +- Show reactions in summaries ([#5387](https://github.com/deltachat/deltachat-core-rust/pull/5387)). + +### Tests + +- Test reactions for forwarded messages + +### Refactor + +- `is_probably_private_reply`: Remove reaction-specific code. +- Use Rust 1.77.0 support for recursion in async functions. + +### Miscellaneous Tasks + +- cargo: Bump rustyline from 13.0.0 to 14.0.0. +- Update chrono from 0.4.34 to 0.4.37. +- Update from brotli 3.4.0 to brotli 4.0.0. +- Upgrade `h2` from 0.4.3 to 0.4.4. +- Upgrade `image` from 0.24.9 to 0.25.1. +- cargo: Bump fast-socks5 from 0.9.5 to 0.9.6. + ## [1.137.1] - 2024-04-03 ### CI @@ -3843,3 +3871,4 @@ https://github.com/deltachat/deltachat-core-rust/pulls?q=is%3Apr+is%3Aclosed [1.136.6]: https://github.com/deltachat/deltachat-core-rust/compare/v1.136.5...v1.136.6 [1.137.0]: https://github.com/deltachat/deltachat-core-rust/compare/v1.136.6...v1.137.0 [1.137.1]: https://github.com/deltachat/deltachat-core-rust/compare/v1.137.0...v1.137.1 +[1.137.2]: https://github.com/deltachat/deltachat-core-rust/compare/v1.137.1...v1.137.2 diff --git a/Cargo.lock b/Cargo.lock index 2c8082dac..713b75381 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1091,7 +1091,7 @@ dependencies = [ [[package]] name = "deltachat" -version = "1.137.1" +version = "1.137.2" dependencies = [ "ansi_term", "anyhow", @@ -1172,7 +1172,7 @@ dependencies = [ [[package]] name = "deltachat-jsonrpc" -version = "1.137.1" +version = "1.137.2" dependencies = [ "anyhow", "async-channel 2.2.0", @@ -1196,7 +1196,7 @@ dependencies = [ [[package]] name = "deltachat-repl" -version = "1.137.1" +version = "1.137.2" dependencies = [ "ansi_term", "anyhow", @@ -1211,7 +1211,7 @@ dependencies = [ [[package]] name = "deltachat-rpc-server" -version = "1.137.1" +version = "1.137.2" dependencies = [ "anyhow", "deltachat", @@ -1240,7 +1240,7 @@ dependencies = [ [[package]] name = "deltachat_ffi" -version = "1.137.1" +version = "1.137.2" dependencies = [ "anyhow", "deltachat", diff --git a/Cargo.toml b/Cargo.toml index 5ae60fdc7..554d4ba8b 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "deltachat" -version = "1.137.1" +version = "1.137.2" edition = "2021" license = "MPL-2.0" rust-version = "1.77" diff --git a/deltachat-ffi/Cargo.toml b/deltachat-ffi/Cargo.toml index 9b9e52835..6d5624f6e 100644 --- a/deltachat-ffi/Cargo.toml +++ b/deltachat-ffi/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "deltachat_ffi" -version = "1.137.1" +version = "1.137.2" description = "Deltachat FFI" edition = "2018" readme = "README.md" diff --git a/deltachat-jsonrpc/Cargo.toml b/deltachat-jsonrpc/Cargo.toml index de9929191..cd11153bb 100644 --- a/deltachat-jsonrpc/Cargo.toml +++ b/deltachat-jsonrpc/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "deltachat-jsonrpc" -version = "1.137.1" +version = "1.137.2" description = "DeltaChat JSON-RPC API" edition = "2021" default-run = "deltachat-jsonrpc-server" diff --git a/deltachat-jsonrpc/typescript/package.json b/deltachat-jsonrpc/typescript/package.json index 494e3f5a6..3b6d0d37f 100644 --- a/deltachat-jsonrpc/typescript/package.json +++ b/deltachat-jsonrpc/typescript/package.json @@ -53,5 +53,5 @@ }, "type": "module", "types": "dist/deltachat.d.ts", - "version": "1.137.1" + "version": "1.137.2" } diff --git a/deltachat-repl/Cargo.toml b/deltachat-repl/Cargo.toml index 670cefd7e..210275399 100644 --- a/deltachat-repl/Cargo.toml +++ b/deltachat-repl/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "deltachat-repl" -version = "1.137.1" +version = "1.137.2" license = "MPL-2.0" edition = "2021" repository = "https://github.com/deltachat/deltachat-core-rust" diff --git a/deltachat-rpc-client/pyproject.toml b/deltachat-rpc-client/pyproject.toml index e7e971a95..809a9aa53 100644 --- a/deltachat-rpc-client/pyproject.toml +++ b/deltachat-rpc-client/pyproject.toml @@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta" [project] name = "deltachat-rpc-client" -version = "1.137.1" +version = "1.137.2" description = "Python client for Delta Chat core JSON-RPC interface" classifiers = [ "Development Status :: 5 - Production/Stable", diff --git a/deltachat-rpc-server/Cargo.toml b/deltachat-rpc-server/Cargo.toml index ed9ff2473..ba6dacf6c 100644 --- a/deltachat-rpc-server/Cargo.toml +++ b/deltachat-rpc-server/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "deltachat-rpc-server" -version = "1.137.1" +version = "1.137.2" description = "DeltaChat JSON-RPC server" edition = "2021" readme = "README.md" diff --git a/package.json b/package.json index 09b53a81e..1da144d0f 100644 --- a/package.json +++ b/package.json @@ -55,5 +55,5 @@ "test:mocha": "mocha node/test/test.mjs --growl --reporter=spec --bail --exit" }, "types": "node/dist/index.d.ts", - "version": "1.137.1" + "version": "1.137.2" } diff --git a/python/pyproject.toml b/python/pyproject.toml index 40412cd5a..9a2a97bef 100644 --- a/python/pyproject.toml +++ b/python/pyproject.toml @@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta" [project] name = "deltachat" -version = "1.137.1" +version = "1.137.2" description = "Python bindings for the Delta Chat Core library using CFFI against the Rust-implemented libdeltachat" readme = "README.rst" requires-python = ">=3.7" diff --git a/release-date.in b/release-date.in index 2d730c755..c2ed85193 100644 --- a/release-date.in +++ b/release-date.in @@ -1 +1 @@ -2024-04-03 \ No newline at end of file +2024-04-05 \ No newline at end of file