Skip to content

Commit 75bcf86

Browse files
committed
chore(release): prepare for 2.13.0
1 parent 5e1d945 commit 75bcf86

File tree

12 files changed

+61
-15
lines changed

12 files changed

+61
-15
lines changed

CHANGELOG.md

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

3+
## [2.13.0] - 2025-09-09
4+
5+
### API-Changes
6+
7+
- [**breaking**] Remove `is_profile_verified` APIs.
8+
- [**breaking**] Remove deprecated `is_protection_broken`.
9+
- [**breaking**] Remove `e2ee_enabled` preference.
10+
11+
### Features / Changes
12+
13+
- Add call ringing API ([#6650](https://github.com/chatmail/core/pull/6650), [#7174](https://github.com/chatmail/core/pull/7174), [#7175](https://github.com/chatmail/core/pull/7175), [#7179](https://github.com/chatmail/core/pull/7179))
14+
- Warn for outdated versions after 6 months instead of 1 year ([#7144](https://github.com/chatmail/core/pull/7144)).
15+
- Do not set "unknown sender for this chat" error.
16+
- Do not replace messages with an error on verification failure.
17+
- Support receiving Autocrypt-Gossip with `_verified` attribute.
18+
- Withdraw all QR codes when one is withdrawn.
19+
20+
### Fixes
21+
22+
- Don't reverify contacts by SELF on receipt of a message from another device.
23+
- Don't verify contacts by others having an unknown verifier.
24+
- Update verifier_id if it's "unknown" and new verifier has known verifier.
25+
- Mark message as failed if it can't be sent ([#7143](https://github.com/chatmail/core/pull/7143)).
26+
- Add "Messages are end-to-end encrypted." to non-protected groups.
27+
28+
### Documentation
29+
30+
- Fix for SecurejoinInviterProgress with progress == 600.
31+
- STYLE.md: Prefer BTreeMap and BTreeSet over hash variants.
32+
33+
### Miscellaneous Tasks
34+
35+
- Update provider database.
36+
- Update dependencies.
37+
38+
### Refactor
39+
40+
- Check that verifier is verified in turn.
41+
- Remove unused `EncryptPreference::Reset`.
42+
- Remove `Aheader::new`.
43+
44+
### Tests
45+
46+
- Add another TimeShiftFalsePositiveNote ([#7142](https://github.com/chatmail/core/pull/7142)).
47+
- Add TestContext.create_chat_id.
48+
349
## [2.12.0] - 2025-08-26
450

551
### API-Changes

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 = "2.12.0"
3+
version = "2.13.0"
44
edition = "2024"
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 = "2.12.0"
3+
version = "2.13.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 = "2.12.0"
3+
version = "2.13.0"
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": "2.12.0"
57+
"version": "2.13.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 = "2.12.0"
3+
version = "2.13.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 = "2.12.0"
7+
version = "2.13.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 = "2.12.0"
3+
version = "2.13.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": "2.12.0"
18+
"version": "2.13.0"
1919
}

0 commit comments

Comments
 (0)