Skip to content

Commit bb57311

Browse files
committed
chore: Release matrix-sdk version 0.9.0
1 parent ff7077b commit bb57311

File tree

20 files changed

+51
-27
lines changed

20 files changed

+51
-27
lines changed

Cargo.lock

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

Cargo.toml

+9-9
Original file line numberDiff line numberDiff line change
@@ -97,17 +97,17 @@ web-sys = "0.3.69"
9797
wiremock = "0.6.2"
9898
zeroize = "1.8.1"
9999

100-
matrix-sdk = { path = "crates/matrix-sdk", version = "0.8.0", default-features = false }
101-
matrix-sdk-base = { path = "crates/matrix-sdk-base", version = "0.8.0" }
102-
matrix-sdk-common = { path = "crates/matrix-sdk-common", version = "0.8.0" }
103-
matrix-sdk-crypto = { path = "crates/matrix-sdk-crypto", version = "0.8.0" }
100+
matrix-sdk = { path = "crates/matrix-sdk", version = "0.9.0", default-features = false }
101+
matrix-sdk-base = { path = "crates/matrix-sdk-base", version = "0.9.0" }
102+
matrix-sdk-common = { path = "crates/matrix-sdk-common", version = "0.9.0" }
103+
matrix-sdk-crypto = { path = "crates/matrix-sdk-crypto", version = "0.9.0" }
104104
matrix-sdk-ffi-macros = { path = "bindings/matrix-sdk-ffi-macros", version = "0.7.0" }
105-
matrix-sdk-indexeddb = { path = "crates/matrix-sdk-indexeddb", version = "0.8.0", default-features = false }
106-
matrix-sdk-qrcode = { path = "crates/matrix-sdk-qrcode", version = "0.8.0" }
107-
matrix-sdk-sqlite = { path = "crates/matrix-sdk-sqlite", version = "0.8.0", default-features = false }
108-
matrix-sdk-store-encryption = { path = "crates/matrix-sdk-store-encryption", version = "0.8.0" }
105+
matrix-sdk-indexeddb = { path = "crates/matrix-sdk-indexeddb", version = "0.9.0", default-features = false }
106+
matrix-sdk-qrcode = { path = "crates/matrix-sdk-qrcode", version = "0.9.0" }
107+
matrix-sdk-sqlite = { path = "crates/matrix-sdk-sqlite", version = "0.9.0", default-features = false }
108+
matrix-sdk-store-encryption = { path = "crates/matrix-sdk-store-encryption", version = "0.9.0" }
109109
matrix-sdk-test = { path = "testing/matrix-sdk-test", version = "0.7.0" }
110-
matrix-sdk-ui = { path = "crates/matrix-sdk-ui", version = "0.8.0", default-features = false }
110+
matrix-sdk-ui = { path = "crates/matrix-sdk-ui", version = "0.9.0", default-features = false }
111111

112112
# Default release profile, select with `--release`
113113
[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.9.0] - 2024-12-18
10+
911
### Features
1012

1113
- Introduced support for

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.8.0"
12+
version = "0.9.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.9.0] - 2024-12-18
10+
911
### Bug Fixes
1012

1113
- Change the behavior of `LinkedChunk::new_with_update_history()` to emit an

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.8.0"
12+
version = "0.9.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.9.0] - 2024-12-18
10+
911
- Expose new API `DehydratedDevices::get_dehydrated_device_pickle_key`, `DehydratedDevices::save_dehydrated_device_pickle_key`
1012
and `DehydratedDevices::delete_dehydrated_device_pickle_key` to store/load the dehydrated device pickle key.
1113
This allows client to automatically rotate the dehydrated device to avoid one-time-keys exhaustion and to_device accumulation.

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.8.0"
12+
version = "0.9.0"
1313

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

crates/matrix-sdk-indexeddb/CHANGELOG.md

+4
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.9.0] - 2024-12-18
10+
11+
No notable changes in this release.
12+
913
## [0.8.0] - 2024-11-19
1014

1115
### Features

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.8.0"
3+
version = "0.9.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

+4
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.9.0] - 2024-12-18
10+
11+
No notable changes in this release.
12+
913
## [0.8.0] - 2024-11-19
1014

1115
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.8.0"
4+
version = "0.9.0"
55
authors = ["Damir Jelić <poljar@termina.org.uk>"]
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.9.0] - 2024-12-18
10+
911
### Features
1012

1113
- Add support for persisting LinkedChunks in the SQLite store. This is a step

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.8.0"
3+
version = "0.9.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

+4
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.9.0] - 2024-12-18
10+
11+
No notable changes in this release.
12+
913
## [0.8.0] - 2024-11-19
1014

1115
No notable changes in this release.

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.8.0"
3+
version = "0.9.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.9.0] - 2024-12-18
10+
911
### Bug Fixes
1012

1113
- Add the `m.room.create` and the `m.room.history_visibility` state events to

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.8.0"
4+
version = "0.9.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.9.0] - 2024-12-18
10+
911
### Bug Fixes
1012

1113
- Use the inviter's server name and the server name from the room alias as

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.8.0"
12+
version = "0.9.0"
1313

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

0 commit comments

Comments
 (0)