Skip to content

Commit b41efb0

Browse files
committed
chore: Release matrix-sdk version 0.12.0
1 parent 23db199 commit b41efb0

File tree

26 files changed

+72
-36
lines changed

26 files changed

+72
-36
lines changed

Cargo.lock

Lines changed: 12 additions & 12 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -105,17 +105,17 @@ web-sys = "0.3.69"
105105
wiremock = "0.6.2"
106106
zeroize = "1.8.1"
107107

108-
matrix-sdk = { path = "crates/matrix-sdk", version = "0.11.0", default-features = false }
109-
matrix-sdk-base = { path = "crates/matrix-sdk-base", version = "0.11.0" }
110-
matrix-sdk-common = { path = "crates/matrix-sdk-common", version = "0.11.0" }
111-
matrix-sdk-crypto = { path = "crates/matrix-sdk-crypto", version = "0.11.1" }
108+
matrix-sdk = { path = "crates/matrix-sdk", version = "0.12.0", default-features = false }
109+
matrix-sdk-base = { path = "crates/matrix-sdk-base", version = "0.12.0" }
110+
matrix-sdk-common = { path = "crates/matrix-sdk-common", version = "0.12.0" }
111+
matrix-sdk-crypto = { path = "crates/matrix-sdk-crypto", version = "0.12.0" }
112112
matrix-sdk-ffi-macros = { path = "bindings/matrix-sdk-ffi-macros", version = "0.7.0" }
113-
matrix-sdk-indexeddb = { path = "crates/matrix-sdk-indexeddb", version = "0.11.0", default-features = false }
114-
matrix-sdk-qrcode = { path = "crates/matrix-sdk-qrcode", version = "0.11.0" }
115-
matrix-sdk-sqlite = { path = "crates/matrix-sdk-sqlite", version = "0.11.0", default-features = false }
116-
matrix-sdk-store-encryption = { path = "crates/matrix-sdk-store-encryption", version = "0.11.0" }
117-
matrix-sdk-test = { path = "testing/matrix-sdk-test", version = "0.11.0" }
118-
matrix-sdk-ui = { path = "crates/matrix-sdk-ui", version = "0.11.0", default-features = false }
113+
matrix-sdk-indexeddb = { path = "crates/matrix-sdk-indexeddb", version = "0.12.0", default-features = false }
114+
matrix-sdk-qrcode = { path = "crates/matrix-sdk-qrcode", version = "0.12.0" }
115+
matrix-sdk-sqlite = { path = "crates/matrix-sdk-sqlite", version = "0.12.0", default-features = false }
116+
matrix-sdk-store-encryption = { path = "crates/matrix-sdk-store-encryption", version = "0.12.0" }
117+
matrix-sdk-test = { path = "testing/matrix-sdk-test", version = "0.12.0" }
118+
matrix-sdk-ui = { path = "crates/matrix-sdk-ui", version = "0.12.0", default-features = false }
119119

120120
[workspace.lints.rust]
121121
rust_2018_idioms = "warn"

bindings/matrix-sdk-ffi/CHANGELOG.md

Lines changed: 2 additions & 0 deletions
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.12.0] - 2025-06-10
10+
911
Breaking changes:
1012

1113
- `Client::send_call_notification_if_needed` now returns `Result<bool>` instead of `Result<()>` so we can check if

bindings/matrix-sdk-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 = "matrix-sdk-ffi"
3-
version = "0.11.0"
3+
version = "0.12.0"
44
edition = "2021"
55
homepage = "https://github.com/matrix-org/matrix-rust-sdk"
66
keywords = ["matrix", "chat", "messaging", "ffi"]

crates/matrix-sdk-base/CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,10 @@ All notable changes to this project will be documented in this file.
66

77
## [Unreleased] - ReleaseDate
88

9+
## [0.12.0] - 2025-06-10
10+
11+
No notable changes in this release.
12+
913
## [0.11.0] - 2025-04-11
1014

1115
### Features

crates/matrix-sdk-base/Cargo.toml

Lines changed: 1 addition & 1 deletion
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.11.0"
12+
version = "0.12.0"
1313

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

crates/matrix-sdk-common/CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,10 @@ All notable changes to this project will be documented in this file.
66

77
## [Unreleased] - ReleaseDate
88

9+
## [0.12.0] - 2025-06-10
10+
11+
No notable changes in this release.
12+
913
## [0.11.0] - 2025-04-11
1014

1115
### Features

crates/matrix-sdk-common/Cargo.toml

Lines changed: 1 addition & 1 deletion
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.11.0"
12+
version = "0.12.0"
1313

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

crates/matrix-sdk-crypto/CHANGELOG.md

Lines changed: 2 additions & 0 deletions
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.12.0] - 2025-06-10
10+
911
### Features
1012

1113
- [**breaking**] The `ProcessedToDeviceEvent::Decrypted` variant now also have an `EncryptionInfo` field.

crates/matrix-sdk-crypto/Cargo.toml

Lines changed: 1 addition & 1 deletion
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.11.1"
12+
version = "0.12.0"
1313

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

0 commit comments

Comments
 (0)