diff --git a/CHANGELOG.md b/CHANGELOG.md index f4d931f2a0..ddeb238ac9 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,25 @@ # Changelog +## [1.151.5] - 2024-12-05 + +### API-Changes + +- [**breaking**] Remove dc_all_work_done(). + +### Fixes + +- Store plaintext in mime_headers of truncated sent messages ([#6273](https://github.com/deltachat/deltachat-core-rust/pull/6273)). +- cargo: Update rPGP to 0.14.2. + +### Documentation + +- Document `push` module. +- Remove mention of non-existent `nightly` feature. + +### Tests + +- Fix panic in `receive_emails` benchmark ([#6306](https://github.com/deltachat/deltachat-core-rust/pull/6306)). + ## [1.151.4] - 2024-12-03 ### Features / Changes @@ -5428,3 +5448,4 @@ https://github.com/deltachat/deltachat-core-rust/pulls?q=is%3Apr+is%3Aclosed [1.151.2]: https://github.com/deltachat/deltachat-core-rust/compare/v1.151.1..v1.151.2 [1.151.3]: https://github.com/deltachat/deltachat-core-rust/compare/v1.151.2..v1.151.3 [1.151.4]: https://github.com/deltachat/deltachat-core-rust/compare/v1.151.3..v1.151.4 +[1.151.5]: https://github.com/deltachat/deltachat-core-rust/compare/v1.151.4..v1.151.5 diff --git a/Cargo.lock b/Cargo.lock index 9a51f84c8c..3380d99d09 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1306,7 +1306,7 @@ dependencies = [ [[package]] name = "deltachat" -version = "1.151.4" +version = "1.151.5" dependencies = [ "anyhow", "async-broadcast", @@ -1407,7 +1407,7 @@ dependencies = [ [[package]] name = "deltachat-jsonrpc" -version = "1.151.4" +version = "1.151.5" dependencies = [ "anyhow", "async-channel 2.3.1", @@ -1432,7 +1432,7 @@ dependencies = [ [[package]] name = "deltachat-repl" -version = "1.151.4" +version = "1.151.5" dependencies = [ "anyhow", "deltachat", @@ -1448,7 +1448,7 @@ dependencies = [ [[package]] name = "deltachat-rpc-server" -version = "1.151.4" +version = "1.151.5" dependencies = [ "anyhow", "deltachat", @@ -1477,7 +1477,7 @@ dependencies = [ [[package]] name = "deltachat_ffi" -version = "1.151.4" +version = "1.151.5" dependencies = [ "anyhow", "deltachat", diff --git a/Cargo.toml b/Cargo.toml index 8fd69e5926..0428022fed 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "deltachat" -version = "1.151.4" +version = "1.151.5" edition = "2021" license = "MPL-2.0" rust-version = "1.77" diff --git a/deltachat-ffi/Cargo.toml b/deltachat-ffi/Cargo.toml index 04dfaf8358..d00b1961bc 100644 --- a/deltachat-ffi/Cargo.toml +++ b/deltachat-ffi/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "deltachat_ffi" -version = "1.151.4" +version = "1.151.5" description = "Deltachat FFI" edition = "2018" readme = "README.md" diff --git a/deltachat-jsonrpc/Cargo.toml b/deltachat-jsonrpc/Cargo.toml index 981b0ee5ce..3dddc65779 100644 --- a/deltachat-jsonrpc/Cargo.toml +++ b/deltachat-jsonrpc/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "deltachat-jsonrpc" -version = "1.151.4" +version = "1.151.5" 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 b0e613cea9..50d988841e 100644 --- a/deltachat-jsonrpc/typescript/package.json +++ b/deltachat-jsonrpc/typescript/package.json @@ -58,5 +58,5 @@ }, "type": "module", "types": "dist/deltachat.d.ts", - "version": "1.151.4" + "version": "1.151.5" } diff --git a/deltachat-repl/Cargo.toml b/deltachat-repl/Cargo.toml index c86c87efd3..d3c815e6eb 100644 --- a/deltachat-repl/Cargo.toml +++ b/deltachat-repl/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "deltachat-repl" -version = "1.151.4" +version = "1.151.5" 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 ad9e5e5ca6..50bb6ba205 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.151.4" +version = "1.151.5" 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 1a0e59ec9a..d8228348b1 100644 --- a/deltachat-rpc-server/Cargo.toml +++ b/deltachat-rpc-server/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "deltachat-rpc-server" -version = "1.151.4" +version = "1.151.5" description = "DeltaChat JSON-RPC server" edition = "2021" readme = "README.md" diff --git a/deltachat-rpc-server/npm-package/package.json b/deltachat-rpc-server/npm-package/package.json index e3518b35bd..37866eba60 100644 --- a/deltachat-rpc-server/npm-package/package.json +++ b/deltachat-rpc-server/npm-package/package.json @@ -15,5 +15,5 @@ }, "type": "module", "types": "index.d.ts", - "version": "1.151.4" + "version": "1.151.5" } diff --git a/package.json b/package.json index c8d604b009..64054d5b49 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.151.4" + "version": "1.151.5" } diff --git a/python/pyproject.toml b/python/pyproject.toml index 0e6d4963e2..3b455338b1 100644 --- a/python/pyproject.toml +++ b/python/pyproject.toml @@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta" [project] name = "deltachat" -version = "1.151.4" +version = "1.151.5" 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 08489f04ca..c0b24a784d 100644 --- a/release-date.in +++ b/release-date.in @@ -1 +1 @@ -2024-12-03 \ No newline at end of file +2024-12-05 \ No newline at end of file