Skip to content

Commit 4c46e42

Browse files
committed
chore: Release matrix-sdk version 0.10.0
1 parent 0d4bc65 commit 4c46e42

File tree

24 files changed

+56
-34
lines changed

24 files changed

+56
-34
lines changed

Cargo.lock

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

Cargo.toml

+10-10
Original file line numberDiff line numberDiff line change
@@ -101,17 +101,17 @@ web-sys = "0.3.69"
101101
wiremock = "0.6.2"
102102
zeroize = "1.8.1"
103103

104-
matrix-sdk = { path = "crates/matrix-sdk", version = "0.9.0", default-features = false }
105-
matrix-sdk-base = { path = "crates/matrix-sdk-base", version = "0.9.0" }
106-
matrix-sdk-common = { path = "crates/matrix-sdk-common", version = "0.9.0" }
107-
matrix-sdk-crypto = { path = "crates/matrix-sdk-crypto", version = "0.9.0" }
104+
matrix-sdk = { path = "crates/matrix-sdk", version = "0.10.0", default-features = false }
105+
matrix-sdk-base = { path = "crates/matrix-sdk-base", version = "0.10.0" }
106+
matrix-sdk-common = { path = "crates/matrix-sdk-common", version = "0.10.0" }
107+
matrix-sdk-crypto = { path = "crates/matrix-sdk-crypto", version = "0.10.0" }
108108
matrix-sdk-ffi-macros = { path = "bindings/matrix-sdk-ffi-macros", version = "0.7.0" }
109-
matrix-sdk-indexeddb = { path = "crates/matrix-sdk-indexeddb", version = "0.9.0", default-features = false }
110-
matrix-sdk-qrcode = { path = "crates/matrix-sdk-qrcode", version = "0.9.0" }
111-
matrix-sdk-sqlite = { path = "crates/matrix-sdk-sqlite", version = "0.9.0", default-features = false }
112-
matrix-sdk-store-encryption = { path = "crates/matrix-sdk-store-encryption", version = "0.9.0" }
113-
matrix-sdk-test = { path = "testing/matrix-sdk-test", version = "0.7.0" }
114-
matrix-sdk-ui = { path = "crates/matrix-sdk-ui", version = "0.9.0", default-features = false }
109+
matrix-sdk-indexeddb = { path = "crates/matrix-sdk-indexeddb", version = "0.10.0", default-features = false }
110+
matrix-sdk-qrcode = { path = "crates/matrix-sdk-qrcode", version = "0.10.0" }
111+
matrix-sdk-sqlite = { path = "crates/matrix-sdk-sqlite", version = "0.10.0", default-features = false }
112+
matrix-sdk-store-encryption = { path = "crates/matrix-sdk-store-encryption", version = "0.10.0" }
113+
matrix-sdk-test = { path = "testing/matrix-sdk-test", version = "0.10.0" }
114+
matrix-sdk-ui = { path = "crates/matrix-sdk-ui", version = "0.10.0", default-features = false }
115115

116116
# Default release profile, select with `--release`
117117
[profile.release]

crates/matrix-sdk-base/CHANGELOG.md

+2
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,8 @@ All notable changes to this project will be documented in this file.
66

77
## [Unreleased] - ReleaseDate
88

9+
## [0.10.0] - 2025-02-04
10+
911
### Features
1012

1113
- [**breaking**] `EventCacheStore` allows to control which media content is

crates/matrix-sdk-base/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ name = "matrix-sdk-base"
99
readme = "README.md"
1010
repository = "https://github.com/matrix-org/matrix-rust-sdk"
1111
rust-version = { workspace = true }
12-
version = "0.9.0"
12+
version = "0.10.0"
1313

1414
[package.metadata.docs.rs]
1515
all-features = true

crates/matrix-sdk-common/CHANGELOG.md

+2
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,8 @@ All notable changes to this project will be documented in this file.
66

77
## [Unreleased] - ReleaseDate
88

9+
## [0.10.0] - 2025-02-04
10+
911
- [**breaking**]: `SyncTimelineEvent` and `TimelineEvent` have been fused into a single type
1012
`TimelineEvent`, and its field `push_actions` has been made `Option`al (it is set to `None` when
1113
we couldn't compute the push actions, because we lacked some information).

crates/matrix-sdk-common/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ name = "matrix-sdk-common"
99
readme = "README.md"
1010
repository = "https://github.com/matrix-org/matrix-rust-sdk"
1111
rust-version = { workspace = true }
12-
version = "0.9.0"
12+
version = "0.10.0"
1313

1414
[package.metadata.docs.rs]
1515
default-target = "x86_64-unknown-linux-gnu"

crates/matrix-sdk-crypto/CHANGELOG.md

+2
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,8 @@ All notable changes to this project will be documented in this file.
66

77
## [Unreleased] - ReleaseDate
88

9+
## [0.10.0] - 2025-02-04
10+
911
### Features
1012

1113
- [**breaking**] `CollectStrategy::DeviceBasedStrategy` is now split into three

crates/matrix-sdk-crypto/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ name = "matrix-sdk-crypto"
99
readme = "README.md"
1010
repository = "https://github.com/matrix-org/matrix-rust-sdk"
1111
rust-version = { workspace = true }
12-
version = "0.9.0"
12+
version = "0.10.0"
1313

1414
[package.metadata.docs.rs]
1515
rustdoc-args = ["--cfg", "docsrs"]

crates/matrix-sdk-indexeddb/CHANGELOG.md

+2
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,8 @@ All notable changes to this project will be documented in this file.
66

77
## [Unreleased] - ReleaseDate
88

9+
## [0.10.0] - 2025-02-04
10+
911
## [0.9.0] - 2024-12-18
1012

1113
No notable changes in this release.

crates/matrix-sdk-indexeddb/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "matrix-sdk-indexeddb"
3-
version = "0.9.0"
3+
version = "0.10.0"
44
repository = "https://github.com/matrix-org/matrix-rust-sdk"
55
description = "Web's IndexedDB Storage backend for matrix-sdk"
66
license = "Apache-2.0"

crates/matrix-sdk-qrcode/CHANGELOG.md

+2
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,8 @@ All notable changes to this project will be documented in this file.
66

77
## [Unreleased] - ReleaseDate
88

9+
## [0.10.0] - 2025-02-04
10+
911
## [0.9.0] - 2024-12-18
1012

1113
No notable changes in this release.

crates/matrix-sdk-qrcode/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[package]
22
name = "matrix-sdk-qrcode"
33
description = "Library to encode and decode QR codes for interactive verifications in Matrix land"
4-
version = "0.9.0"
4+
version = "0.10.0"
55
authors = ["Damir Jelić <[email protected]>"]
66
edition = "2021"
77
homepage = "https://github.com/matrix-org/matrix-rust-sdk"

crates/matrix-sdk-sqlite/CHANGELOG.md

+2
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,8 @@ All notable changes to this project will be documented in this file.
66

77
## [Unreleased] - ReleaseDate
88

9+
## [0.10.0] - 2025-02-04
10+
911
### Features
1012

1113
- [**breaking**] `SqliteEventCacheStore` implements the new APIs of

crates/matrix-sdk-sqlite/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "matrix-sdk-sqlite"
3-
version = "0.9.0"
3+
version = "0.10.0"
44
edition = "2021"
55
repository = "https://github.com/matrix-org/matrix-rust-sdk"
66
description = "Sqlite storage backend for matrix-sdk"

crates/matrix-sdk-store-encryption/CHANGELOG.md

+2
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,8 @@ All notable changes to this project will be documented in this file.
66

77
## [Unreleased] - ReleaseDate
88

9+
## [0.10.0] - 2025-02-04
10+
911
### Bug Fixes
1012

1113
- Remove the usage of an unwrap in the `StoreCipher::import_with_key` method.

crates/matrix-sdk-store-encryption/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "matrix-sdk-store-encryption"
3-
version = "0.9.0"
3+
version = "0.10.0"
44
edition = "2021"
55
description = "Helpers for encrypted storage keys for the Matrix SDK"
66
repository = "https://github.com/matrix-org/matrix-rust-sdk"

crates/matrix-sdk-ui/CHANGELOG.md

+2
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,8 @@ All notable changes to this project will be documented in this file.
66

77
## [Unreleased] - ReleaseDate
88

9+
## [0.10.0] - 2025-02-04
10+
911
### Bug Fixes
1012

1113
- Don't consider rooms in the banned state to be non-left rooms. This bug was

crates/matrix-sdk-ui/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[package]
22
name = "matrix-sdk-ui"
33
description = "GUI-centric utilities on top of matrix-rust-sdk (experimental)."
4-
version = "0.9.0"
4+
version = "0.10.0"
55
edition = "2021"
66
repository = "https://github.com/matrix-org/matrix-rust-sdk"
77
license = "Apache-2.0"

crates/matrix-sdk/CHANGELOG.md

+2
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,8 @@ All notable changes to this project will be documented in this file.
66

77
## [Unreleased] - ReleaseDate
88

9+
## [0.10.0] - 2025-02-04
10+
911
### Features
1012

1113
- Allow to set and check whether an image is animated via its `ImageInfo`.

crates/matrix-sdk/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ name = "matrix-sdk"
99
readme = "README.md"
1010
repository = "https://github.com/matrix-org/matrix-rust-sdk"
1111
rust-version = { workspace = true }
12-
version = "0.9.0"
12+
version = "0.10.0"
1313

1414
[package.metadata.docs.rs]
1515
features = ["docsrs"]

testing/matrix-sdk-test-macros/CHANGELOG.md

+2
Original file line numberDiff line numberDiff line change
@@ -5,3 +5,5 @@ All notable changes to this project will be documented in this file.
55
<!-- next-header -->
66

77
## [Unreleased] - ReleaseDate
8+
9+
## [0.10.0] - 2025-02-04

testing/matrix-sdk-test-macros/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ name = "matrix-sdk-test-macros"
99
readme = "README.md"
1010
repository = "https://github.com/matrix-org/matrix-rust-sdk"
1111
rust-version = { workspace = true }
12-
version = "0.7.0"
12+
version = "0.10.0"
1313

1414
[lib]
1515
proc-macro = true

testing/matrix-sdk-test/CHANGELOG.md

+2
Original file line numberDiff line numberDiff line change
@@ -5,3 +5,5 @@ All notable changes to this project will be documented in this file.
55
<!-- next-header -->
66

77
## [Unreleased] - ReleaseDate
8+
9+
## [0.10.0] - 2025-02-04

testing/matrix-sdk-test/Cargo.toml

+3-3
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ name = "matrix-sdk-test"
99
readme = "README.md"
1010
repository = "https://github.com/matrix-org/matrix-rust-sdk"
1111
rust-version = { workspace = true }
12-
version = "0.7.0"
12+
version = "0.10.0"
1313

1414
[lib]
1515
test = false
@@ -19,8 +19,8 @@ doctest = false
1919
as_variant = { workspace = true }
2020
http = { workspace = true }
2121
insta = { workspace = true }
22-
matrix-sdk-common = { version = "0.9.0", path = "../../crates/matrix-sdk-common" }
23-
matrix-sdk-test-macros = { version = "0.7.0", path = "../matrix-sdk-test-macros" }
22+
matrix-sdk-common = { version = "0.10.0", path = "../../crates/matrix-sdk-common" }
23+
matrix-sdk-test-macros = { version = "0.10.0", path = "../matrix-sdk-test-macros" }
2424
once_cell = { workspace = true }
2525
# Enable the unstable feature for polls support.
2626
# "client-api-s" enables need the "server" feature of ruma-client-api, which is needed to serialize Response objects to JSON.

0 commit comments

Comments
 (0)