Skip to content

Commit 0e3277b

Browse files
committed
chore(release): prepare for 1.159.1
1 parent 9f5e608 commit 0e3277b

File tree

12 files changed

+56
-15
lines changed

12 files changed

+56
-15
lines changed

CHANGELOG.md

Lines changed: 41 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,45 @@
11
# Changelog
22

3+
## [1.159.1] - 2025-04-12
4+
5+
### API-Changes
6+
7+
- deltachat-rpc-client: Add `Account.add_transport()`.
8+
- Add jsonrpc for info_contact_id.
9+
10+
### Build system
11+
12+
- Update crossbeam-channel from 0.5.14 to 0.5.15.
13+
- Increase MSRV to 1.82.0.
14+
15+
### CI
16+
17+
- Don't make ruff format quiet ([#6785](https://github.com/chatmail/core/pull/6785)).
18+
19+
### Documentation
20+
21+
- MimeFactory.member_timestamps has the same order as To: rather than RCPT TO:.
22+
- Two JsonRPC doc improvements ([#6778](https://github.com/chatmail/core/pull/6778)).
23+
24+
### Features / Changes
25+
26+
- Improve error message when the user tries to do AEAP ([#6786](https://github.com/chatmail/core/pull/6786)).
27+
- Pass email and password via env in python-jsonrpc.
28+
- Track gossiping per (chat, fingerprint) pair.
29+
30+
### Fixes
31+
32+
- Add missing ChatDeleted event to python jsonrpc client.
33+
- Never send Autocrypt-Gossip in broadcast lists.
34+
- Restart I/O when mvbox_move setting is changed.
35+
36+
### Tests
37+
38+
- Port test_delete_deltachat_folder to JSON-RPC.
39+
- Autocrypt-Gossip header isn't sent in broadcast messages.
40+
- Encrypt test_subject_in_group().
41+
- Encrypt test_remove_member_bcc.
42+
343
## [1.159.0] - 2025-04-08
444

545
### API-Changes
@@ -6191,3 +6231,4 @@ https://github.com/chatmail/core/pulls?q=is%3Apr+is%3Aclosed
61916231
[1.157.3]: https://github.com/chatmail/core/compare/v1.157.2..v1.157.3
61926232
[1.158.0]: https://github.com/chatmail/core/compare/v1.157.3..v1.158.0
61936233
[1.159.0]: https://github.com/chatmail/core/compare/v1.158.0..v1.159.0
6234+
[1.159.1]: https://github.com/chatmail/core/compare/v1.159.0..v1.159.1

Cargo.lock

Lines changed: 5 additions & 5 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "deltachat"
3-
version = "1.159.0"
3+
version = "1.159.1"
44
edition = "2021"
55
license = "MPL-2.0"
66
rust-version = "1.82"

deltachat-ffi/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "deltachat_ffi"
3-
version = "1.159.0"
3+
version = "1.159.1"
44
description = "Deltachat FFI"
55
edition = "2018"
66
readme = "README.md"

deltachat-jsonrpc/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "deltachat-jsonrpc"
3-
version = "1.159.0"
3+
version = "1.159.1"
44
description = "DeltaChat JSON-RPC API"
55
edition = "2021"
66
license = "MPL-2.0"

deltachat-jsonrpc/typescript/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -54,5 +54,5 @@
5454
},
5555
"type": "module",
5656
"types": "dist/deltachat.d.ts",
57-
"version": "1.159.0"
57+
"version": "1.159.1"
5858
}

deltachat-repl/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "deltachat-repl"
3-
version = "1.159.0"
3+
version = "1.159.1"
44
license = "MPL-2.0"
55
edition = "2021"
66
repository = "https://github.com/chatmail/core"

deltachat-rpc-client/pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"
44

55
[project]
66
name = "deltachat-rpc-client"
7-
version = "1.159.0"
7+
version = "1.159.1"
88
description = "Python client for Delta Chat core JSON-RPC interface"
99
classifiers = [
1010
"Development Status :: 5 - Production/Stable",

deltachat-rpc-server/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "deltachat-rpc-server"
3-
version = "1.159.0"
3+
version = "1.159.1"
44
description = "DeltaChat JSON-RPC server"
55
edition = "2021"
66
readme = "README.md"

deltachat-rpc-server/npm-package/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,5 +15,5 @@
1515
},
1616
"type": "module",
1717
"types": "index.d.ts",
18-
"version": "1.159.0"
18+
"version": "1.159.1"
1919
}

0 commit comments

Comments
 (0)