Skip to content

Commit 18b169c

Browse files
committed
chore: Release matrix-sdk version 0.13.0
1 parent b9ce405 commit 18b169c

File tree

26 files changed

+76
-40
lines changed

26 files changed

+76
-40
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
@@ -107,17 +107,17 @@ web-sys = "0.3.69"
107107
wiremock = "0.6.2"
108108
zeroize = "1.8.1"
109109

110-
matrix-sdk = { path = "crates/matrix-sdk", version = "0.12.0", default-features = false }
111-
matrix-sdk-base = { path = "crates/matrix-sdk-base", version = "0.12.0" }
112-
matrix-sdk-common = { path = "crates/matrix-sdk-common", version = "0.12.0" }
113-
matrix-sdk-crypto = { path = "crates/matrix-sdk-crypto", version = "0.12.0" }
110+
matrix-sdk = { path = "crates/matrix-sdk", version = "0.13.0", default-features = false }
111+
matrix-sdk-base = { path = "crates/matrix-sdk-base", version = "0.13.0" }
112+
matrix-sdk-common = { path = "crates/matrix-sdk-common", version = "0.13.0" }
113+
matrix-sdk-crypto = { path = "crates/matrix-sdk-crypto", version = "0.13.0" }
114114
matrix-sdk-ffi-macros = { path = "bindings/matrix-sdk-ffi-macros", version = "0.7.0" }
115-
matrix-sdk-indexeddb = { path = "crates/matrix-sdk-indexeddb", version = "0.12.0", default-features = false }
116-
matrix-sdk-qrcode = { path = "crates/matrix-sdk-qrcode", version = "0.12.0" }
117-
matrix-sdk-sqlite = { path = "crates/matrix-sdk-sqlite", version = "0.12.0", default-features = false }
118-
matrix-sdk-store-encryption = { path = "crates/matrix-sdk-store-encryption", version = "0.12.0" }
119-
matrix-sdk-test = { path = "testing/matrix-sdk-test", version = "0.12.0" }
120-
matrix-sdk-ui = { path = "crates/matrix-sdk-ui", version = "0.12.0", default-features = false }
115+
matrix-sdk-indexeddb = { path = "crates/matrix-sdk-indexeddb", version = "0.13.0", default-features = false }
116+
matrix-sdk-qrcode = { path = "crates/matrix-sdk-qrcode", version = "0.13.0" }
117+
matrix-sdk-sqlite = { path = "crates/matrix-sdk-sqlite", version = "0.13.0", default-features = false }
118+
matrix-sdk-store-encryption = { path = "crates/matrix-sdk-store-encryption", version = "0.13.0" }
119+
matrix-sdk-test = { path = "testing/matrix-sdk-test", version = "0.13.0" }
120+
matrix-sdk-ui = { path = "crates/matrix-sdk-ui", version = "0.13.0", default-features = false }
121121

122122
[workspace.lints.rust]
123123
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.13.0] - 2025-07-10
10+
911
### Features
1012

1113
- Add `NotificationRoomInfo::topic` to the `NotificationRoomInfo` struct, which

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.12.0"
3+
version = "0.13.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: 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.13.0] - 2025-07-10
10+
911
### Features
1012
- The `RoomInfo` now remembers when an invite was explicitly accepted when the
1113
`BaseClient::room_joined()` method was called. A new getter for this

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.12.0"
12+
version = "0.13.0"
1313

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

crates/matrix-sdk-common/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.13.0] - 2025-07-10
10+
911
### Features
1012

1113
- Expose the `ROOM_VERSION_FALLBACK` that should be used when the version of a

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.12.0"
12+
version = "0.13.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.13.0] - 2025-07-10
10+
911
### Features
1012

1113
- [**breaking**] Add a new `VerificationLevel::MismatchedSender` to indicate that the sender of an event appears to have been tampered with.

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.12.0"
12+
version = "0.13.0"
1313

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

0 commit comments

Comments
 (0)