From b95ebe444eef1e90f682030768f4e668a7687a90 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Damir=20Jeli=C4=87?= Date: Tue, 22 Jun 2021 14:57:46 +0200 Subject: [PATCH] matrix-sdk: Bump our versions --- matrix_qrcode/Cargo.toml | 6 ++++++ matrix_sdk/Cargo.toml | 9 ++++----- matrix_sdk_appservice/Cargo.toml | 4 ++-- matrix_sdk_base/Cargo.toml | 8 ++++---- matrix_sdk_common/Cargo.toml | 2 +- matrix_sdk_crypto/Cargo.toml | 6 +++--- matrix_sdk_test/Cargo.toml | 4 ++-- 7 files changed, 22 insertions(+), 17 deletions(-) diff --git a/matrix_qrcode/Cargo.toml b/matrix_qrcode/Cargo.toml index 47a14c7f..8dc9cbd5 100644 --- a/matrix_qrcode/Cargo.toml +++ b/matrix_qrcode/Cargo.toml @@ -1,8 +1,14 @@ [package] name = "matrix-qrcode" +description = "Library to encode and decode QR codes for interactive verifications in Matrix land" version = "0.1.0" authors = ["Damir Jelić "] edition = "2018" +homepage = "https://github.com/matrix-org/matrix-rust-sdk" +keywords = ["matrix", "chat", "messaging", "ruma", "nio"] +license = "Apache-2.0" +readme = "README.md" +repository = "https://github.com/matrix-org/matrix-rust-sdk" [package.metadata.docs.rs] features = ["docs"] diff --git a/matrix_sdk/Cargo.toml b/matrix_sdk/Cargo.toml index eea9b3c7..10bdefc3 100644 --- a/matrix_sdk/Cargo.toml +++ b/matrix_sdk/Cargo.toml @@ -8,7 +8,7 @@ license = "Apache-2.0" name = "matrix-sdk" readme = "README.md" repository = "https://github.com/matrix-org/matrix-rust-sdk" -version = "0.2.0" +version = "0.3.0" [package.metadata.docs.rs] features = ["docs"] @@ -43,10 +43,10 @@ mime = "0.3.16" rand = { version = "0.8.4", optional = true } bytes = "1.0.1" -matrix-sdk-common = { version = "0.2.0", path = "../matrix_sdk_common" } +matrix-sdk-common = { version = "0.3.0", path = "../matrix_sdk_common" } [dependencies.matrix-sdk-base] -version = "0.2.0" +version = "0.3.0" path = "../matrix_sdk_base" default_features = false @@ -91,14 +91,13 @@ features = ["wasm-bindgen"] [dev-dependencies] dirs = "3.0.2" -matrix-sdk-test = { version = "0.2.0", path = "../matrix_sdk_test" } +matrix-sdk-test = { version = "0.3.0", path = "../matrix_sdk_test" } tokio = { version = "1.7.1", default-features = false, features = ["rt-multi-thread", "macros"] } serde_json = "1.0.64" tracing-subscriber = "0.2.18" tempfile = "3.2.0" mockito = "0.30.0" lazy_static = "1.4.0" -matrix-sdk-common = { version = "0.2.0", path = "../matrix_sdk_common" } [[example]] name = "emoji_verification" diff --git a/matrix_sdk_appservice/Cargo.toml b/matrix_sdk_appservice/Cargo.toml index 6d38a561..4a14ea74 100644 --- a/matrix_sdk_appservice/Cargo.toml +++ b/matrix_sdk_appservice/Cargo.toml @@ -29,7 +29,7 @@ tracing = "0.1" url = "2" warp = { git = "https://github.com/seanmonstar/warp.git", rev = "629405", optional = true, default-features = false } -matrix-sdk = { version = "0.2", path = "../matrix_sdk", default-features = false, features = ["appservice", "native-tls"] } +matrix-sdk = { version = "0.3", path = "../matrix_sdk", default-features = false, features = ["appservice", "native-tls"] } [dependencies.ruma] version = "0.2.0" @@ -41,7 +41,7 @@ mockito = "0.30" tokio = { version = "1", default-features = false, features = ["rt-multi-thread", "macros"] } tracing-subscriber = "0.2" -matrix-sdk-test = { version = "0.2", path = "../matrix_sdk_test", features = ["appservice"] } +matrix-sdk-test = { version = "0.3", path = "../matrix_sdk_test", features = ["appservice"] } [[example]] name = "appservice_autojoin" diff --git a/matrix_sdk_base/Cargo.toml b/matrix_sdk_base/Cargo.toml index 063bcf23..cd7b08fb 100644 --- a/matrix_sdk_base/Cargo.toml +++ b/matrix_sdk_base/Cargo.toml @@ -8,7 +8,7 @@ license = "Apache-2.0" name = "matrix-sdk-base" readme = "README.md" repository = "https://github.com/matrix-org/matrix-rust-sdk" -version = "0.2.0" +version = "0.3.0" [package.metadata.docs.rs] features = ["docs"] @@ -31,8 +31,8 @@ serde = { version = "1.0.126", features = ["rc"] } serde_json = "1.0.64" tracing = "0.1.26" -matrix-sdk-common = { version = "0.2.0", path = "../matrix_sdk_common" } -matrix-sdk-crypto = { version = "0.2.0", path = "../matrix_sdk_crypto", optional = true } +matrix-sdk-common = { version = "0.3.0", path = "../matrix_sdk_common" } +matrix-sdk-crypto = { version = "0.3.0", path = "../matrix_sdk_crypto", optional = true } # Misc dependencies thiserror = "1.0.25" @@ -53,7 +53,7 @@ default-features = false features = ["sync", "fs"] [dev-dependencies] -matrix-sdk-test = { version = "0.2.0", path = "../matrix_sdk_test" } +matrix-sdk-test = { version = "0.3.0", path = "../matrix_sdk_test" } http = "0.2.4" [target.'cfg(not(target_arch = "wasm32"))'.dev-dependencies] diff --git a/matrix_sdk_common/Cargo.toml b/matrix_sdk_common/Cargo.toml index 886c8e3e..2a003cf8 100644 --- a/matrix_sdk_common/Cargo.toml +++ b/matrix_sdk_common/Cargo.toml @@ -8,7 +8,7 @@ license = "Apache-2.0" name = "matrix-sdk-common" readme = "README.md" repository = "https://github.com/matrix-org/matrix-rust-sdk" -version = "0.2.0" +version = "0.3.0" [dependencies] async-trait = "0.1.50" diff --git a/matrix_sdk_crypto/Cargo.toml b/matrix_sdk_crypto/Cargo.toml index 3cce6902..7b42b582 100644 --- a/matrix_sdk_crypto/Cargo.toml +++ b/matrix_sdk_crypto/Cargo.toml @@ -8,7 +8,7 @@ license = "Apache-2.0" name = "matrix-sdk-crypto" readme = "README.md" repository = "https://github.com/matrix-org/matrix-rust-sdk" -version = "0.2.0" +version = "0.3.0" [package.metadata.docs.rs] features = ["docs"] @@ -21,7 +21,7 @@ docs = ["sled_cryptostore"] [dependencies] matrix-qrcode = { version = "0.1.0", path = "../matrix_qrcode" } -matrix-sdk-common = { version = "0.2.0", path = "../matrix_sdk_common" } +matrix-sdk-common = { version = "0.3.0", path = "../matrix_sdk_common" } ruma = { version = "0.2.0", features = ["client-api-c", "unstable-pre-spec"] } olm-rs = { version = "1.0.1", features = ["serde"] } @@ -51,7 +51,7 @@ proptest = "1.0.0" serde_json = "1.0.64" tempfile = "3.2.0" http = "0.2.4" -matrix-sdk-test = { version = "0.2.0", path = "../matrix_sdk_test" } +matrix-sdk-test = { version = "0.3.0", path = "../matrix_sdk_test" } indoc = "1.0.3" criterion = { version = "0.3.4", features = ["async", "async_tokio", "html_reports"] } diff --git a/matrix_sdk_test/Cargo.toml b/matrix_sdk_test/Cargo.toml index 21eca785..6eaa9cc4 100644 --- a/matrix_sdk_test/Cargo.toml +++ b/matrix_sdk_test/Cargo.toml @@ -8,7 +8,7 @@ license = "Apache-2.0" name = "matrix-sdk-test" readme = "README.md" repository = "https://github.com/matrix-org/matrix-rust-sdk" -version = "0.2.0" +version = "0.3.0" [features] appservice = [] @@ -16,7 +16,7 @@ appservice = [] [dependencies] http = "0.2.4" lazy_static = "1.4.0" -matrix-sdk-common = { version = "0.2.0", path = "../matrix_sdk_common" } +matrix-sdk-common = { version = "0.3.0", path = "../matrix_sdk_common" } matrix-sdk-test-macros = { version = "0.1.0", path = "../matrix_sdk_test_macros" } ruma = { version = "0.2.0", features = ["client-api-c"] } serde = "1.0.126"