chore: Release matrix-sdk version 0.9.0

This commit is contained in:
Damir Jelić
2024-12-18 12:52:52 +01:00
parent ff7077b742
commit 09cd3a926b
20 changed files with 51 additions and 27 deletions
Generated
+9 -9
View File
@@ -3048,7 +3048,7 @@ dependencies = [
[[package]]
name = "matrix-sdk"
version = "0.8.0"
version = "0.9.0"
dependencies = [
"anyhow",
"anymap2",
@@ -3124,7 +3124,7 @@ dependencies = [
[[package]]
name = "matrix-sdk-base"
version = "0.8.0"
version = "0.9.0"
dependencies = [
"as_variant",
"assert_matches",
@@ -3160,7 +3160,7 @@ dependencies = [
[[package]]
name = "matrix-sdk-common"
version = "0.8.0"
version = "0.9.0"
dependencies = [
"assert_matches",
"async-trait",
@@ -3189,7 +3189,7 @@ dependencies = [
[[package]]
name = "matrix-sdk-crypto"
version = "0.8.0"
version = "0.9.0"
dependencies = [
"aes",
"anyhow",
@@ -3313,7 +3313,7 @@ dependencies = [
[[package]]
name = "matrix-sdk-indexeddb"
version = "0.8.0"
version = "0.9.0"
dependencies = [
"anyhow",
"assert_matches",
@@ -3381,7 +3381,7 @@ dependencies = [
[[package]]
name = "matrix-sdk-qrcode"
version = "0.8.0"
version = "0.9.0"
dependencies = [
"byteorder",
"image",
@@ -3393,7 +3393,7 @@ dependencies = [
[[package]]
name = "matrix-sdk-sqlite"
version = "0.8.0"
version = "0.9.0"
dependencies = [
"assert_matches",
"async-trait",
@@ -3421,7 +3421,7 @@ dependencies = [
[[package]]
name = "matrix-sdk-store-encryption"
version = "0.8.0"
version = "0.9.0"
dependencies = [
"anyhow",
"base64 0.22.1",
@@ -3469,7 +3469,7 @@ dependencies = [
[[package]]
name = "matrix-sdk-ui"
version = "0.8.0"
version = "0.9.0"
dependencies = [
"anyhow",
"as_variant",
+9 -9
View File
@@ -97,17 +97,17 @@ web-sys = "0.3.69"
wiremock = "0.6.2"
zeroize = "1.8.1"
matrix-sdk = { path = "crates/matrix-sdk", version = "0.8.0", default-features = false }
matrix-sdk-base = { path = "crates/matrix-sdk-base", version = "0.8.0" }
matrix-sdk-common = { path = "crates/matrix-sdk-common", version = "0.8.0" }
matrix-sdk-crypto = { path = "crates/matrix-sdk-crypto", version = "0.8.0" }
matrix-sdk = { path = "crates/matrix-sdk", version = "0.9.0", default-features = false }
matrix-sdk-base = { path = "crates/matrix-sdk-base", version = "0.9.0" }
matrix-sdk-common = { path = "crates/matrix-sdk-common", version = "0.9.0" }
matrix-sdk-crypto = { path = "crates/matrix-sdk-crypto", version = "0.9.0" }
matrix-sdk-ffi-macros = { path = "bindings/matrix-sdk-ffi-macros", version = "0.7.0" }
matrix-sdk-indexeddb = { path = "crates/matrix-sdk-indexeddb", version = "0.8.0", default-features = false }
matrix-sdk-qrcode = { path = "crates/matrix-sdk-qrcode", version = "0.8.0" }
matrix-sdk-sqlite = { path = "crates/matrix-sdk-sqlite", version = "0.8.0", default-features = false }
matrix-sdk-store-encryption = { path = "crates/matrix-sdk-store-encryption", version = "0.8.0" }
matrix-sdk-indexeddb = { path = "crates/matrix-sdk-indexeddb", version = "0.9.0", default-features = false }
matrix-sdk-qrcode = { path = "crates/matrix-sdk-qrcode", version = "0.9.0" }
matrix-sdk-sqlite = { path = "crates/matrix-sdk-sqlite", version = "0.9.0", default-features = false }
matrix-sdk-store-encryption = { path = "crates/matrix-sdk-store-encryption", version = "0.9.0" }
matrix-sdk-test = { path = "testing/matrix-sdk-test", version = "0.7.0" }
matrix-sdk-ui = { path = "crates/matrix-sdk-ui", version = "0.8.0", default-features = false }
matrix-sdk-ui = { path = "crates/matrix-sdk-ui", version = "0.9.0", default-features = false }
# Default release profile, select with `--release`
[profile.release]
+2
View File
@@ -6,6 +6,8 @@ All notable changes to this project will be documented in this file.
## [Unreleased] - ReleaseDate
## [0.9.0] - 2024-12-18
### Features
- Introduced support for
+1 -1
View File
@@ -9,7 +9,7 @@ name = "matrix-sdk-base"
readme = "README.md"
repository = "https://github.com/matrix-org/matrix-rust-sdk"
rust-version = { workspace = true }
version = "0.8.0"
version = "0.9.0"
[package.metadata.docs.rs]
all-features = true
+2
View File
@@ -6,6 +6,8 @@ All notable changes to this project will be documented in this file.
## [Unreleased] - ReleaseDate
## [0.9.0] - 2024-12-18
### Bug Fixes
- Change the behavior of `LinkedChunk::new_with_update_history()` to emit an
+1 -1
View File
@@ -9,7 +9,7 @@ name = "matrix-sdk-common"
readme = "README.md"
repository = "https://github.com/matrix-org/matrix-rust-sdk"
rust-version = { workspace = true }
version = "0.8.0"
version = "0.9.0"
[package.metadata.docs.rs]
default-target = "x86_64-unknown-linux-gnu"
+2
View File
@@ -6,6 +6,8 @@ All notable changes to this project will be documented in this file.
## [Unreleased] - ReleaseDate
## [0.9.0] - 2024-12-18
- Expose new API `DehydratedDevices::get_dehydrated_device_pickle_key`, `DehydratedDevices::save_dehydrated_device_pickle_key`
and `DehydratedDevices::delete_dehydrated_device_pickle_key` to store/load the dehydrated device pickle key.
This allows client to automatically rotate the dehydrated device to avoid one-time-keys exhaustion and to_device accumulation.
+1 -1
View File
@@ -9,7 +9,7 @@ name = "matrix-sdk-crypto"
readme = "README.md"
repository = "https://github.com/matrix-org/matrix-rust-sdk"
rust-version = { workspace = true }
version = "0.8.0"
version = "0.9.0"
[package.metadata.docs.rs]
rustdoc-args = ["--cfg", "docsrs"]
+4
View File
@@ -6,6 +6,10 @@ All notable changes to this project will be documented in this file.
## [Unreleased] - ReleaseDate
## [0.9.0] - 2024-12-18
No notable changes in this release.
## [0.8.0] - 2024-11-19
### Features
+1 -1
View File
@@ -1,6 +1,6 @@
[package]
name = "matrix-sdk-indexeddb"
version = "0.8.0"
version = "0.9.0"
repository = "https://github.com/matrix-org/matrix-rust-sdk"
description = "Web's IndexedDB Storage backend for matrix-sdk"
license = "Apache-2.0"
+4
View File
@@ -6,6 +6,10 @@ All notable changes to this project will be documented in this file.
## [Unreleased] - ReleaseDate
## [0.9.0] - 2024-12-18
No notable changes in this release.
## [0.8.0] - 2024-11-19
No notable changes in this release.
+1 -1
View File
@@ -1,7 +1,7 @@
[package]
name = "matrix-sdk-qrcode"
description = "Library to encode and decode QR codes for interactive verifications in Matrix land"
version = "0.8.0"
version = "0.9.0"
authors = ["Damir Jelić <poljar@termina.org.uk>"]
edition = "2021"
homepage = "https://github.com/matrix-org/matrix-rust-sdk"
+2
View File
@@ -6,6 +6,8 @@ All notable changes to this project will be documented in this file.
## [Unreleased] - ReleaseDate
## [0.9.0] - 2024-12-18
### Features
- Add support for persisting LinkedChunks in the SQLite store. This is a step
+1 -1
View File
@@ -1,6 +1,6 @@
[package]
name = "matrix-sdk-sqlite"
version = "0.8.0"
version = "0.9.0"
edition = "2021"
repository = "https://github.com/matrix-org/matrix-rust-sdk"
description = "Sqlite storage backend for matrix-sdk"
@@ -6,6 +6,10 @@ All notable changes to this project will be documented in this file.
## [Unreleased] - ReleaseDate
## [0.9.0] - 2024-12-18
No notable changes in this release.
## [0.8.0] - 2024-11-19
No notable changes in this release.
@@ -1,6 +1,6 @@
[package]
name = "matrix-sdk-store-encryption"
version = "0.8.0"
version = "0.9.0"
edition = "2021"
description = "Helpers for encrypted storage keys for the Matrix SDK"
repository = "https://github.com/matrix-org/matrix-rust-sdk"
+2
View File
@@ -6,6 +6,8 @@ All notable changes to this project will be documented in this file.
## [Unreleased] - ReleaseDate
## [0.9.0] - 2024-12-18
### Bug Fixes
- Add the `m.room.create` and the `m.room.history_visibility` state events to
+1 -1
View File
@@ -1,7 +1,7 @@
[package]
name = "matrix-sdk-ui"
description = "GUI-centric utilities on top of matrix-rust-sdk (experimental)."
version = "0.8.0"
version = "0.9.0"
edition = "2021"
repository = "https://github.com/matrix-org/matrix-rust-sdk"
license = "Apache-2.0"
+2
View File
@@ -6,6 +6,8 @@ All notable changes to this project will be documented in this file.
## [Unreleased] - ReleaseDate
## [0.9.0] - 2024-12-18
### Bug Fixes
- Use the inviter's server name and the server name from the room alias as
+1 -1
View File
@@ -9,7 +9,7 @@ name = "matrix-sdk"
readme = "README.md"
repository = "https://github.com/matrix-org/matrix-rust-sdk"
rust-version = { workspace = true }
version = "0.8.0"
version = "0.9.0"
[package.metadata.docs.rs]
features = ["docsrs"]