From 0ffbc059aa99dff7f8afc41d7e6ecc10c7df945d Mon Sep 17 00:00:00 2001 From: Jonas Platte Date: Thu, 20 May 2021 18:44:27 +0200 Subject: [PATCH] Release ruma-client-api 0.10.1 --- crates/ruma-appservice-api/Cargo.toml | 2 +- crates/ruma-client-api/CHANGELOG.md | 6 ++++++ crates/ruma-client-api/Cargo.toml | 2 +- crates/ruma-client/Cargo.toml | 4 ++-- crates/ruma/Cargo.toml | 2 +- 5 files changed, 11 insertions(+), 5 deletions(-) diff --git a/crates/ruma-appservice-api/Cargo.toml b/crates/ruma-appservice-api/Cargo.toml index de78f009..f9980f21 100644 --- a/crates/ruma-appservice-api/Cargo.toml +++ b/crates/ruma-appservice-api/Cargo.toml @@ -13,7 +13,7 @@ edition = "2018" [dependencies] ruma-api = { version = "0.17.0", path = "../ruma-api" } -ruma-client-api = { version = "0.10.0", path = "../ruma-client-api", features = ["client"], optional = true } +ruma-client-api = { version = "0.10.1", path = "../ruma-client-api", features = ["client"], optional = true } ruma-common = { version = "0.5.1", path = "../ruma-common" } ruma-events = { version = "0.22.1", path = "../ruma-events" } ruma-identifiers = { version = "0.19.1", path = "../ruma-identifiers" } diff --git a/crates/ruma-client-api/CHANGELOG.md b/crates/ruma-client-api/CHANGELOG.md index 42a959ff..e0479afb 100644 --- a/crates/ruma-client-api/CHANGELOG.md +++ b/crates/ruma-client-api/CHANGELOG.md @@ -1,5 +1,11 @@ # [unreleased] +# 0.10.1 + +Improvements: + +* Add unstable support for room types + # 0.10.0 Bug fixes: diff --git a/crates/ruma-client-api/Cargo.toml b/crates/ruma-client-api/Cargo.toml index eb7b3ed9..764bdc30 100644 --- a/crates/ruma-client-api/Cargo.toml +++ b/crates/ruma-client-api/Cargo.toml @@ -12,7 +12,7 @@ license = "MIT" name = "ruma-client-api" readme = "README.md" repository = "https://github.com/ruma/ruma" -version = "0.10.0" +version = "0.10.1" edition = "2018" [dependencies] diff --git a/crates/ruma-client/Cargo.toml b/crates/ruma-client/Cargo.toml index 6f2a2d00..503f56ef 100644 --- a/crates/ruma-client/Cargo.toml +++ b/crates/ruma-client/Cargo.toml @@ -41,7 +41,7 @@ hyper-tls = { version = "0.5.0", optional = true } isahc-crate = { package = "isahc", version = "1.3.1", optional = true } reqwest = { version = "0.11.3", optional = true, default-features = false } ruma-api = { version = "0.17.0", path = "../ruma-api" } -ruma-client-api = { version = "0.10.0", path = "../ruma-client-api", optional = true, features = ["client"] } +ruma-client-api = { version = "0.10.1", path = "../ruma-client-api", optional = true, features = ["client"] } ruma-common = { version = "0.5.1", path = "../ruma-common" } ruma-events = { version = "0.22.1", path = "../ruma-events" } ruma-identifiers = { version = "0.19.1", path = "../ruma-identifiers" } @@ -50,4 +50,4 @@ serde = { version = "1.0.118", features = ["derive"] } serde_json = "1.0.61" [dev-dependencies] -ruma-client-api = { version = "0.10.0", path = "../ruma-client-api", features = ["client"] } +ruma-client-api = { version = "0.10.1", path = "../ruma-client-api", features = ["client"] } diff --git a/crates/ruma/Cargo.toml b/crates/ruma/Cargo.toml index 79623c8f..336d846f 100644 --- a/crates/ruma/Cargo.toml +++ b/crates/ruma/Cargo.toml @@ -30,7 +30,7 @@ ruma-state-res = { version = "0.1.0", path = "../ruma-state-res", optional = tru ruma-api = { version = "0.17.0", path = "../ruma-api", optional = true } ruma-appservice-api = { version = "0.2.0", path = "../ruma-appservice-api", optional = true } -ruma-client-api = { version = "0.10.0", path = "../ruma-client-api", optional = true } +ruma-client-api = { version = "0.10.1", path = "../ruma-client-api", optional = true } ruma-federation-api = { version = "0.1.0", path = "../ruma-federation-api", optional = true } ruma-identity-service-api = { version = "0.1.0", path = "../ruma-identity-service-api", optional = true } ruma-push-gateway-api = { version = "0.1.0", path = "../ruma-push-gateway-api", optional = true }