Skip to content

Commit a40337f

Browse files
committed
chore(release): prepare for 1.160.0
1 parent b45d9aa commit a40337f

File tree

12 files changed

+70
-17
lines changed

12 files changed

+70
-17
lines changed

CHANGELOG.md

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

3+
## [1.160.0] - 2025-06-22
4+
5+
### API-Changes
6+
7+
- [**breaking**] jsonrpc: remove webxdc info from MessageObject.
8+
Users need to call `get_webxdc_info` separately now
9+
and expect that the call may fail e.g. if WebXDC is not a valid ZIP archive.
10+
- [**breaking**] Deprecate `DC_GCL_VERIFIED_ONLY`.
11+
- [**breaking**] Make logging macros private.
12+
13+
### Features / Changes
14+
15+
- Add more IMAP logging.
16+
- Sort apps by recently-updated ([#6875](https://github.com/chatmail/core/pull/6875)).
17+
- Better error for quoting a message from another chat.
18+
- Put "biography" in the vCard ([#6819](https://github.com/chatmail/core/pull/6819)).
19+
20+
### Fixes
21+
22+
- Do not allow chat creation if decryption failed.
23+
- Remove faulty test ([#6880](https://github.com/chatmail/core/pull/6880)).
24+
- Reduce the scope of the last_full_folder_scan lock in scan_folders.
25+
- Ignore verification error if the chat is not protected yet.
26+
- Create group chats unprotected on verification error.
27+
- `fetch_url`: return err on non 2xx reponses.
28+
- Sort multiple saved messages by timestamp ([#6862](https://github.com/chatmail/core/pull/6862)).
29+
- contact-tools: Escape commas in vCards' FN, KEY, PHOTO, NOTE ([#6912](https://github.com/chatmail/core/pull/6912)).
30+
- Don't change ConfiguredAddr when adding a transport ([#6804](https://github.com/chatmail/core/pull/6804)).
31+
32+
### Build system
33+
34+
- Increase MSRV to 1.85.0.
35+
- Update Doxygen config and layout file.
36+
- Update to rPGP 0.16.0 ([#6719](https://github.com/chatmail/core/pull/6719)).
37+
- Enable async-native-tls/vendored feature.
38+
- Update rusqlite to 0.36.0.
39+
40+
### CI
41+
42+
- Update Rust to 1.87.0.
43+
- nix: Test build on macOS without cross-compilation.
44+
- Use installed toolchain to lint Rust.
45+
46+
### Refactor
47+
48+
- Remove explicit lock drop at the end of scope.
49+
- Use CancellationToken instead of a 1-message channel.
50+
51+
### Documentation
52+
53+
- Add more code style guide references.
54+
355
## [1.159.5] - 2025-05-14
456

557
### Fixes
@@ -6303,3 +6355,4 @@ https://github.com/chatmail/core/pulls?q=is%3Apr+is%3Aclosed
63036355
[1.159.3]: https://github.com/chatmail/core/compare/v1.159.2..v1.159.3
63046356
[1.159.4]: https://github.com/chatmail/core/compare/v1.159.3..v1.159.4
63056357
[1.159.5]: https://github.com/chatmail/core/compare/v1.159.4..v1.159.5
6358+
[1.160.0]: https://github.com/chatmail/core/compare/v1.159.5..v1.160.0

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.5"
3+
version = "1.160.0"
44
edition = "2021"
55
license = "MPL-2.0"
66
rust-version = "1.85"

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.5"
3+
version = "1.160.0"
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.5"
3+
version = "1.160.0"
44
description = "DeltaChat JSON-RPC API"
55
edition = "2021"
66
license = "MPL-2.0"

deltachat-jsonrpc/typescript/package.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -24,9 +24,9 @@
2424
},
2525
"exports": {
2626
".": {
27-
"types": "./dist/deltachat.d.ts",
2827
"import": "./dist/deltachat.js",
29-
"require": "./dist/deltachat.cjs"
28+
"require": "./dist/deltachat.cjs",
29+
"types": "./dist/deltachat.d.ts"
3030
}
3131
},
3232
"license": "MPL-2.0",
@@ -54,5 +54,5 @@
5454
},
5555
"type": "module",
5656
"types": "dist/deltachat.d.ts",
57-
"version": "1.159.5"
57+
"version": "1.160.0"
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.5"
3+
version = "1.160.0"
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.5"
7+
version = "1.160.0"
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.5"
3+
version = "1.160.0"
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.5"
18+
"version": "1.160.0"
1919
}

python/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"
7-
version = "1.159.5"
7+
version = "1.160.0"
88
description = "Python bindings for the Delta Chat Core library using CFFI against the Rust-implemented libdeltachat"
99
readme = "README.rst"
1010
requires-python = ">=3.8"

release-date.in

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
2025-05-14
1+
2025-06-22

0 commit comments

Comments
 (0)