From 88278fc826c7611f6d3fb30c57e4c8f4e95b8d05 Mon Sep 17 00:00:00 2001 From: "B. Petersen" Date: Thu, 31 Oct 2024 14:19:18 +0100 Subject: [PATCH] chore(release): prepare for 1.148.6 --- CHANGELOG.md | 28 +++++++++++++++++++ Cargo.lock | 10 +++---- Cargo.toml | 2 +- deltachat-ffi/Cargo.toml | 2 +- deltachat-jsonrpc/Cargo.toml | 2 +- deltachat-jsonrpc/typescript/package.json | 2 +- deltachat-repl/Cargo.toml | 2 +- deltachat-rpc-client/pyproject.toml | 2 +- deltachat-rpc-server/Cargo.toml | 2 +- deltachat-rpc-server/npm-package/package.json | 2 +- package.json | 2 +- python/pyproject.toml | 2 +- release-date.in | 2 +- 13 files changed, 44 insertions(+), 16 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 443d80ee5..d7a524f13 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,32 @@ # Changelog +## [1.148.6] - 2024-10-31 + +### API-Changes + +- Add Message::new_text() ([#6123](https://github.com/deltachat/deltachat-core-rust/pull/6123)). +- Add `MessageSearchResult.chat_id` ([#6120](https://github.com/deltachat/deltachat-core-rust/pull/6120)). + +### Features / Changes + +- Enable Webxdc realtime by default ([#6125](https://github.com/deltachat/deltachat-core-rust/pull/6125)). + +### Fixes + +- Save full text to mime_headers for long outgoing messages ([#6091](https://github.com/deltachat/deltachat-core-rust/pull/6091)). +- Show root SMTP connection failure in connectivity view ([#6121](https://github.com/deltachat/deltachat-core-rust/pull/6121)). +- Skip IDLE if we got unsolicited FETCH ([#6130](https://github.com/deltachat/deltachat-core-rust/pull/6130)). + +### Miscellaneous Tasks + +- Silence another rust-analyzer false-positive ([#6124](https://github.com/deltachat/deltachat-core-rust/pull/6124)). +- cargo: Upgrade iroh to 0.26.0. + +### Refactor + +- Directly use connectives ([#6128](https://github.com/deltachat/deltachat-core-rust/pull/6128)). +- Use Message::new_text() more ([#6127](https://github.com/deltachat/deltachat-core-rust/pull/6127)). + ## [1.148.5] - 2024-10-27 ### Fixes @@ -5165,3 +5192,4 @@ https://github.com/deltachat/deltachat-core-rust/pulls?q=is%3Apr+is%3Aclosed [1.148.3]: https://github.com/deltachat/deltachat-core-rust/compare/v1.148.2..v1.148.3 [1.148.4]: https://github.com/deltachat/deltachat-core-rust/compare/v1.148.3..v1.148.4 [1.148.5]: https://github.com/deltachat/deltachat-core-rust/compare/v1.148.4..v1.148.5 +[1.148.6]: https://github.com/deltachat/deltachat-core-rust/compare/v1.148.5..v1.148.6 diff --git a/Cargo.lock b/Cargo.lock index d764e36d7..c75a48134 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1303,7 +1303,7 @@ dependencies = [ [[package]] name = "deltachat" -version = "1.148.5" +version = "1.148.6" dependencies = [ "anyhow", "async-broadcast", @@ -1403,7 +1403,7 @@ dependencies = [ [[package]] name = "deltachat-jsonrpc" -version = "1.148.5" +version = "1.148.6" dependencies = [ "anyhow", "async-channel 2.3.1", @@ -1428,7 +1428,7 @@ dependencies = [ [[package]] name = "deltachat-repl" -version = "1.148.5" +version = "1.148.6" dependencies = [ "anyhow", "deltachat", @@ -1444,7 +1444,7 @@ dependencies = [ [[package]] name = "deltachat-rpc-server" -version = "1.148.5" +version = "1.148.6" dependencies = [ "anyhow", "deltachat", @@ -1473,7 +1473,7 @@ dependencies = [ [[package]] name = "deltachat_ffi" -version = "1.148.5" +version = "1.148.6" dependencies = [ "anyhow", "deltachat", diff --git a/Cargo.toml b/Cargo.toml index d8c01cbd5..ccf613412 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "deltachat" -version = "1.148.5" +version = "1.148.6" edition = "2021" license = "MPL-2.0" rust-version = "1.77" diff --git a/deltachat-ffi/Cargo.toml b/deltachat-ffi/Cargo.toml index 6265df8b7..7e42f78d3 100644 --- a/deltachat-ffi/Cargo.toml +++ b/deltachat-ffi/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "deltachat_ffi" -version = "1.148.5" +version = "1.148.6" description = "Deltachat FFI" edition = "2018" readme = "README.md" diff --git a/deltachat-jsonrpc/Cargo.toml b/deltachat-jsonrpc/Cargo.toml index 4e5911233..9d72bdb47 100644 --- a/deltachat-jsonrpc/Cargo.toml +++ b/deltachat-jsonrpc/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "deltachat-jsonrpc" -version = "1.148.5" +version = "1.148.6" 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 3f6e3919d..d6494450f 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.148.5" + "version": "1.148.6" } diff --git a/deltachat-repl/Cargo.toml b/deltachat-repl/Cargo.toml index 356c22ebd..68f1d1c21 100644 --- a/deltachat-repl/Cargo.toml +++ b/deltachat-repl/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "deltachat-repl" -version = "1.148.5" +version = "1.148.6" 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 3d7cf95e1..7a2b1572a 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.148.5" +version = "1.148.6" 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 00263ccb4..68919f7a1 100644 --- a/deltachat-rpc-server/Cargo.toml +++ b/deltachat-rpc-server/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "deltachat-rpc-server" -version = "1.148.5" +version = "1.148.6" 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 ca3b39e63..48b9ebd7e 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.148.5" + "version": "1.148.6" } diff --git a/package.json b/package.json index a1ea8c338..06d5b311d 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.148.5" + "version": "1.148.6" } diff --git a/python/pyproject.toml b/python/pyproject.toml index 588f5c03a..8ef6249d7 100644 --- a/python/pyproject.toml +++ b/python/pyproject.toml @@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta" [project] name = "deltachat" -version = "1.148.5" +version = "1.148.6" 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 914597312..904d2d3b5 100644 --- a/release-date.in +++ b/release-date.in @@ -1 +1 @@ -2024-10-27 \ No newline at end of file +2024-10-31 \ No newline at end of file