Skip to content

Commit ffd2ec9

Browse files
committed
chore(release): prepare for 1.154.0
1 parent 498979c commit ffd2ec9

File tree

13 files changed

+52
-16
lines changed

13 files changed

+52
-16
lines changed

CHANGELOG.md

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

3+
## [1.154.0] - 2025-01-15
4+
5+
### Features / Changes
6+
7+
- New group consistency algorithm.
8+
9+
### Fixes
10+
11+
- Migration: Set bcc_self=1 if it's unset and delete_server_after!=1 ([#6432](https://github.com/deltachat/deltachat-core-rust/pull/6432)).
12+
- Clear the config cache after every migration ([#6438](https://github.com/deltachat/deltachat-core-rust/pull/6438)).
13+
14+
### Build system
15+
16+
- Increase minimum supported Python version to 3.8.
17+
- [**breaking**] Remove jsonrpc feature flag.
18+
19+
### CI
20+
21+
- Update Rust to 1.84.0.
22+
23+
### Miscellaneous Tasks
24+
25+
- Beta Clippy suggestions ([#6422](https://github.com/deltachat/deltachat-core-rust/pull/6422)).
26+
27+
### Refactor
28+
29+
- Use let..else.
30+
- Add why_cant_send_ex() capable to only ignore specified conditions.
31+
- Remove unnecessary is_contact_in_chat check.
32+
- Eliminate remaining repeat_vars() calls ([#6359](https://github.com/deltachat/deltachat-core-rust/pull/6359)).
33+
34+
### Tests
35+
36+
- Use assert_eq! to compare chatlist length.
37+
338
## [1.153.0] - 2025-01-05
439

540
### Features / Changes
@@ -5585,3 +5620,4 @@ https://github.com/deltachat/deltachat-core-rust/pulls?q=is%3Apr+is%3Aclosed
55855620
[1.152.1]: https://github.com/deltachat/deltachat-core-rust/compare/v1.152.0..v1.152.1
55865621
[1.152.2]: https://github.com/deltachat/deltachat-core-rust/compare/v1.152.1..v1.152.2
55875622
[1.153.0]: https://github.com/deltachat/deltachat-core-rust/compare/v1.152.2..v1.153.0
5623+
[1.154.0]: https://github.com/deltachat/deltachat-core-rust/compare/v1.153.0..v1.154.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.153.0"
3+
version = "1.154.0"
44
edition = "2021"
55
license = "MPL-2.0"
66
rust-version = "1.77"

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.153.0"
3+
version = "1.154.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.153.0"
3+
version = "1.154.0"
44
description = "DeltaChat JSON-RPC API"
55
edition = "2021"
66
default-run = "deltachat-jsonrpc-server"

deltachat-jsonrpc/typescript/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -58,5 +58,5 @@
5858
},
5959
"type": "module",
6060
"types": "dist/deltachat.d.ts",
61-
"version": "1.153.0"
61+
"version": "1.154.0"
6262
}

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.153.0"
3+
version = "1.154.0"
44
license = "MPL-2.0"
55
edition = "2021"
66
repository = "https://github.com/deltachat/deltachat-core-rust"

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.153.0"
7+
version = "1.154.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.153.0"
3+
version = "1.154.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.153.0"
18+
"version": "1.154.0"
1919
}

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -55,5 +55,5 @@
5555
"test:mocha": "mocha node/test/test.mjs --growl --reporter=spec --bail --exit"
5656
},
5757
"types": "node/dist/index.d.ts",
58-
"version": "1.153.0"
58+
"version": "1.154.0"
5959
}

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.153.0"
7+
version = "1.154.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-01-05
1+
2025-01-15

0 commit comments

Comments
 (0)