Skip to content

Commit 48fcf66

Browse files
committed
chore(release): prepare for 1.155.6
1 parent 8eff4f4 commit 48fcf66

File tree

13 files changed

+41
-16
lines changed

13 files changed

+41
-16
lines changed

CHANGELOG.md

+26
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,30 @@
11
# Changelog
22

3+
## [1.155.6] - 2025-02-17
4+
5+
### Features / Changes
6+
7+
- Sort past members by the timestamp of removal.
8+
- Use UUID v4 to generate Message-IDs.
9+
10+
### Fixes
11+
12+
- Use dedicated ID for sync messages affecting device chat.
13+
- Do not allow non-members to change ephemeral timer settings.
14+
- Show padlock when the message is not sent over the network.
15+
16+
### Build system
17+
18+
- Remove deprecated node module.
19+
20+
### CI
21+
22+
- Audit workflows with zizmor.
23+
24+
### Documentation
25+
26+
- Improve docstrings ([#6496](https://github.com/deltachat/deltachat-core-rust/pull/6496)).
27+
328
## [1.155.5] - 2025-02-14
429

530
### Fixes
@@ -5802,3 +5827,4 @@ https://github.com/deltachat/deltachat-core-rust/pulls?q=is%3Apr+is%3Aclosed
58025827
[1.155.3]: https://github.com/deltachat/deltachat-core-rust/compare/v1.155.2..v1.155.3
58035828
[1.155.4]: https://github.com/deltachat/deltachat-core-rust/compare/v1.155.3..v1.155.4
58045829
[1.155.5]: https://github.com/deltachat/deltachat-core-rust/compare/v1.155.4..v1.155.5
5830+
[1.155.6]: https://github.com/deltachat/deltachat-core-rust/compare/v1.155.5..v1.155.6

Cargo.lock

+5-5
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "deltachat"
3-
version = "1.155.5"
3+
version = "1.155.6"
44
edition = "2021"
55
license = "MPL-2.0"
66
rust-version = "1.81"

deltachat-ffi/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "deltachat_ffi"
3-
version = "1.155.5"
3+
version = "1.155.6"
44
description = "Deltachat FFI"
55
edition = "2018"
66
readme = "README.md"

deltachat-jsonrpc/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "deltachat-jsonrpc"
3-
version = "1.155.5"
3+
version = "1.155.6"
44
description = "DeltaChat JSON-RPC API"
55
edition = "2021"
66
default-run = "deltachat-jsonrpc-server"

deltachat-jsonrpc/typescript/package.json

+1-1
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.155.5"
61+
"version": "1.155.6"
6262
}

deltachat-repl/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "deltachat-repl"
3-
version = "1.155.5"
3+
version = "1.155.6"
44
license = "MPL-2.0"
55
edition = "2021"
66
repository = "https://github.com/deltachat/deltachat-core-rust"

deltachat-rpc-client/pyproject.toml

+1-1
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.155.5"
7+
version = "1.155.6"
88
description = "Python client for Delta Chat core JSON-RPC interface"
99
classifiers = [
1010
"Development Status :: 5 - Production/Stable",

deltachat-rpc-server/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "deltachat-rpc-server"
3-
version = "1.155.5"
3+
version = "1.155.6"
44
description = "DeltaChat JSON-RPC server"
55
edition = "2021"
66
readme = "README.md"

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

+1-1
Original file line numberDiff line numberDiff line change
@@ -15,5 +15,5 @@
1515
},
1616
"type": "module",
1717
"types": "index.d.ts",
18-
"version": "1.155.5"
18+
"version": "1.155.6"
1919
}

python/pyproject.toml

+1-1
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.155.5"
7+
version = "1.155.6"
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

+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
2025-02-14
1+
2025-02-17

scripts/set_core_version.py

-1
Original file line numberDiff line numberDiff line change
@@ -67,7 +67,6 @@ def main():
6767
parser.add_argument("newversion")
6868

6969
json_list = [
70-
"package.json",
7170
"deltachat-jsonrpc/typescript/package.json",
7271
"deltachat-rpc-server/npm-package/package.json",
7372
]

0 commit comments

Comments
 (0)