From 40b09cda2f29682c259e6b1d325152f47ca21967 Mon Sep 17 00:00:00 2001 From: Jonas Platte Date: Fri, 5 Jan 2024 12:45:01 +0100 Subject: [PATCH] Bump all of the versions to 0.7.0 --- Cargo.lock | 22 +++++++++---------- Cargo.toml | 20 ++++++++--------- crates/matrix-sdk-base/CHANGELOG.md | 10 ++++----- crates/matrix-sdk-base/Cargo.toml | 2 +- crates/matrix-sdk-common/Cargo.toml | 2 +- crates/matrix-sdk-crypto/CHANGELOG.md | 2 +- crates/matrix-sdk-crypto/Cargo.toml | 2 +- crates/matrix-sdk-indexeddb/Cargo.toml | 2 +- crates/matrix-sdk-qrcode/Cargo.toml | 2 +- crates/matrix-sdk-sqlite/Cargo.toml | 2 +- crates/matrix-sdk-store-encryption/Cargo.toml | 2 +- crates/matrix-sdk-ui/Cargo.toml | 2 +- crates/matrix-sdk/CHANGELOG.md | 2 +- crates/matrix-sdk/Cargo.toml | 2 +- testing/matrix-sdk-test-macros/Cargo.toml | 2 +- testing/matrix-sdk-test/Cargo.toml | 4 ++-- 16 files changed, 39 insertions(+), 41 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index eebf2da9e..89f87b865 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -2992,7 +2992,7 @@ dependencies = [ [[package]] name = "matrix-sdk" -version = "0.6.2" +version = "0.7.0" dependencies = [ "anyhow", "anymap2", @@ -3061,7 +3061,7 @@ dependencies = [ [[package]] name = "matrix-sdk-base" -version = "0.6.1" +version = "0.7.0" dependencies = [ "as_variant", "assert_matches", @@ -3091,7 +3091,7 @@ dependencies = [ [[package]] name = "matrix-sdk-common" -version = "0.6.0" +version = "0.7.0" dependencies = [ "assert_matches", "async-trait", @@ -3117,7 +3117,7 @@ dependencies = [ [[package]] name = "matrix-sdk-crypto" -version = "0.6.0" +version = "0.7.0" dependencies = [ "aes", "anyhow", @@ -3234,7 +3234,7 @@ dependencies = [ [[package]] name = "matrix-sdk-indexeddb" -version = "0.2.0" +version = "0.7.0" dependencies = [ "anyhow", "assert_matches", @@ -3288,7 +3288,7 @@ dependencies = [ [[package]] name = "matrix-sdk-qrcode" -version = "0.4.0" +version = "0.7.0" dependencies = [ "byteorder", "image", @@ -3300,7 +3300,7 @@ dependencies = [ [[package]] name = "matrix-sdk-sqlite" -version = "0.1.0" +version = "0.7.0" dependencies = [ "assert_matches", "async-trait", @@ -3326,7 +3326,7 @@ dependencies = [ [[package]] name = "matrix-sdk-store-encryption" -version = "0.2.0" +version = "0.7.0" dependencies = [ "anyhow", "blake3", @@ -3346,7 +3346,7 @@ dependencies = [ [[package]] name = "matrix-sdk-test" -version = "0.6.0" +version = "0.7.0" dependencies = [ "ctor", "getrandom 0.2.11", @@ -3363,7 +3363,7 @@ dependencies = [ [[package]] name = "matrix-sdk-test-macros" -version = "0.3.0" +version = "0.7.0" dependencies = [ "quote", "syn 2.0.46", @@ -3371,7 +3371,7 @@ dependencies = [ [[package]] name = "matrix-sdk-ui" -version = "0.6.0" +version = "0.7.0" dependencies = [ "anyhow", "as_variant", diff --git a/Cargo.toml b/Cargo.toml index c558cd60f..1de7b6687 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -54,16 +54,16 @@ uniffi_bindgen = { git = "https://github.com/mozilla/uniffi-rs", rev = "0a03b713 vodozemac = "0.5.0" zeroize = "1.6.0" -matrix-sdk = { path = "crates/matrix-sdk", version = "0.6.2", default-features = false } -matrix-sdk-base = { path = "crates/matrix-sdk-base", version = "0.6.1" } -matrix-sdk-common = { path = "crates/matrix-sdk-common", version = "0.6.0" } -matrix-sdk-crypto = { path = "crates/matrix-sdk-crypto", version = "0.6.0" } -matrix-sdk-indexeddb = { path = "crates/matrix-sdk-indexeddb", version = "0.2.0", default-features = false } -matrix-sdk-qrcode = { path = "crates/matrix-sdk-qrcode", version = "0.4.0" } -matrix-sdk-sqlite = { path = "crates/matrix-sdk-sqlite", version = "0.1.0", default-features = false } -matrix-sdk-store-encryption = { path = "crates/matrix-sdk-store-encryption", version = "0.2.0" } -matrix-sdk-test = { path = "testing/matrix-sdk-test", version = "0.6.0" } -matrix-sdk-ui = { path = "crates/matrix-sdk-ui", version = "0.6.0", default-features = false } +matrix-sdk = { path = "crates/matrix-sdk", version = "0.7.0", default-features = false } +matrix-sdk-base = { path = "crates/matrix-sdk-base", version = "0.7.0" } +matrix-sdk-common = { path = "crates/matrix-sdk-common", version = "0.7.0" } +matrix-sdk-crypto = { path = "crates/matrix-sdk-crypto", version = "0.7.0" } +matrix-sdk-indexeddb = { path = "crates/matrix-sdk-indexeddb", version = "0.7.0", default-features = false } +matrix-sdk-qrcode = { path = "crates/matrix-sdk-qrcode", version = "0.7.0" } +matrix-sdk-sqlite = { path = "crates/matrix-sdk-sqlite", version = "0.7.0", default-features = false } +matrix-sdk-store-encryption = { path = "crates/matrix-sdk-store-encryption", version = "0.7.0" } +matrix-sdk-test = { path = "testing/matrix-sdk-test", version = "0.7.0" } +matrix-sdk-ui = { path = "crates/matrix-sdk-ui", version = "0.7.0", default-features = false } # Default release profile, select with `--release` [profile.release] diff --git a/crates/matrix-sdk-base/CHANGELOG.md b/crates/matrix-sdk-base/CHANGELOG.md index 7b82ef70e..9f2959a75 100644 --- a/crates/matrix-sdk-base/CHANGELOG.md +++ b/crates/matrix-sdk-base/CHANGELOG.md @@ -1,6 +1,4 @@ -# Changelog - -## unreleased +# 0.7.0 - Rename `RoomType` to `RoomState` - Add `RoomInfo::state` accessor @@ -33,9 +31,9 @@ - Move `Session`, `SessionTokens` and associated methods to the `matrix-sdk` crate. - Add `Room::subscribe_info` -## 0.5.1 +# 0.5.1 -### Bug Fixes +## Bug Fixes - #664: Fix regression with push rules being applied to the own user_id only instead of all but the own user_id -## 0.5.0 +# 0.5.0 diff --git a/crates/matrix-sdk-base/Cargo.toml b/crates/matrix-sdk-base/Cargo.toml index 63dca57f0..f05b32794 100644 --- a/crates/matrix-sdk-base/Cargo.toml +++ b/crates/matrix-sdk-base/Cargo.toml @@ -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.6.1" +version = "0.7.0" [package.metadata.docs.rs] all-features = true diff --git a/crates/matrix-sdk-common/Cargo.toml b/crates/matrix-sdk-common/Cargo.toml index ffef64818..65ca44ea3 100644 --- a/crates/matrix-sdk-common/Cargo.toml +++ b/crates/matrix-sdk-common/Cargo.toml @@ -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.6.0" +version = "0.7.0" [package.metadata.docs.rs] default-target = "x86_64-unknown-linux-gnu" diff --git a/crates/matrix-sdk-crypto/CHANGELOG.md b/crates/matrix-sdk-crypto/CHANGELOG.md index e253dd4d7..fd59ac4f1 100644 --- a/crates/matrix-sdk-crypto/CHANGELOG.md +++ b/crates/matrix-sdk-crypto/CHANGELOG.md @@ -1,4 +1,4 @@ -# unreleased +# 0.7.0 - Add method to mark a list of inbound group sessions as backed up: `CryptoStore::mark_inbound_group_sessions_as_backed_up` diff --git a/crates/matrix-sdk-crypto/Cargo.toml b/crates/matrix-sdk-crypto/Cargo.toml index 2b4cccb9d..023ec65ff 100644 --- a/crates/matrix-sdk-crypto/Cargo.toml +++ b/crates/matrix-sdk-crypto/Cargo.toml @@ -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.6.0" +version = "0.7.0" [package.metadata.docs.rs] rustdoc-args = ["--cfg", "docsrs"] diff --git a/crates/matrix-sdk-indexeddb/Cargo.toml b/crates/matrix-sdk-indexeddb/Cargo.toml index 9fd1e8c26..3718c5a5d 100644 --- a/crates/matrix-sdk-indexeddb/Cargo.toml +++ b/crates/matrix-sdk-indexeddb/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "matrix-sdk-indexeddb" -version = "0.2.0" +version = "0.7.0" repository = "https://github.com/matrix-org/matrix-rust-sdk" description = "Web's IndexedDB Storage backend for matrix-sdk" license = "Apache-2.0" diff --git a/crates/matrix-sdk-qrcode/Cargo.toml b/crates/matrix-sdk-qrcode/Cargo.toml index a9ca39ada..58cdf6cca 100644 --- a/crates/matrix-sdk-qrcode/Cargo.toml +++ b/crates/matrix-sdk-qrcode/Cargo.toml @@ -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.4.0" +version = "0.7.0" authors = ["Damir Jelić "] edition = "2021" homepage = "https://github.com/matrix-org/matrix-rust-sdk" diff --git a/crates/matrix-sdk-sqlite/Cargo.toml b/crates/matrix-sdk-sqlite/Cargo.toml index 31bd80bc7..79265a705 100644 --- a/crates/matrix-sdk-sqlite/Cargo.toml +++ b/crates/matrix-sdk-sqlite/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "matrix-sdk-sqlite" -version = "0.1.0" +version = "0.7.0" edition = "2021" repository = "https://github.com/matrix-org/matrix-rust-sdk" description = "Sqlite storage backend for matrix-sdk" diff --git a/crates/matrix-sdk-store-encryption/Cargo.toml b/crates/matrix-sdk-store-encryption/Cargo.toml index 48b5579b9..25ec098c6 100644 --- a/crates/matrix-sdk-store-encryption/Cargo.toml +++ b/crates/matrix-sdk-store-encryption/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "matrix-sdk-store-encryption" -version = "0.2.0" +version = "0.7.0" edition = "2021" description = "Helpers for encrypted storage keys for the Matrix SDK" repository = "https://github.com/matrix-org/matrix-rust-sdk" diff --git a/crates/matrix-sdk-ui/Cargo.toml b/crates/matrix-sdk-ui/Cargo.toml index d18943ae3..5a6f432ee 100644 --- a/crates/matrix-sdk-ui/Cargo.toml +++ b/crates/matrix-sdk-ui/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "matrix-sdk-ui" -version = "0.6.0" +version = "0.7.0" edition = "2021" repository = "https://github.com/matrix-org/matrix-rust-sdk" license = "Apache-2.0" diff --git a/crates/matrix-sdk/CHANGELOG.md b/crates/matrix-sdk/CHANGELOG.md index 73daf4635..d1e1b81aa 100644 --- a/crates/matrix-sdk/CHANGELOG.md +++ b/crates/matrix-sdk/CHANGELOG.md @@ -1,4 +1,4 @@ -# unreleased +# 0.7.0 Breaking changes: diff --git a/crates/matrix-sdk/Cargo.toml b/crates/matrix-sdk/Cargo.toml index 867a3531d..f053fe82d 100644 --- a/crates/matrix-sdk/Cargo.toml +++ b/crates/matrix-sdk/Cargo.toml @@ -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.6.2" +version = "0.7.0" [package.metadata.docs.rs] features = ["docsrs"] diff --git a/testing/matrix-sdk-test-macros/Cargo.toml b/testing/matrix-sdk-test-macros/Cargo.toml index c8acfb512..63dac4193 100644 --- a/testing/matrix-sdk-test-macros/Cargo.toml +++ b/testing/matrix-sdk-test-macros/Cargo.toml @@ -9,7 +9,7 @@ name = "matrix-sdk-test-macros" readme = "README.md" repository = "https://github.com/matrix-org/matrix-rust-sdk" rust-version = { workspace = true } -version = "0.3.0" +version = "0.7.0" [lib] proc-macro = true diff --git a/testing/matrix-sdk-test/Cargo.toml b/testing/matrix-sdk-test/Cargo.toml index 3f83aff83..0af07a948 100644 --- a/testing/matrix-sdk-test/Cargo.toml +++ b/testing/matrix-sdk-test/Cargo.toml @@ -9,7 +9,7 @@ name = "matrix-sdk-test" readme = "README.md" repository = "https://github.com/matrix-org/matrix-rust-sdk" rust-version = { workspace = true } -version = "0.6.0" +version = "0.7.0" [lib] test = false @@ -17,7 +17,7 @@ doctest = false [dependencies] http = { workspace = true } -matrix-sdk-test-macros = { version = "0.3.0", path = "../matrix-sdk-test-macros" } +matrix-sdk-test-macros = { version = "0.7.0", path = "../matrix-sdk-test-macros" } once_cell = { workspace = true } ruma = { workspace = true, features = ["rand"] } serde = { workspace = true }