diff --git a/crates/ruma-appservice-api/Cargo.toml b/crates/ruma-appservice-api/Cargo.toml index 407d73f0..6866d3ee 100644 --- a/crates/ruma-appservice-api/Cargo.toml +++ b/crates/ruma-appservice-api/Cargo.toml @@ -22,7 +22,7 @@ server = [] [dependencies] ruma-api = { version = "0.18.3", path = "../ruma-api" } -ruma-client-api = { version = "0.12.1", path = "../ruma-client-api", features = ["client"], optional = true } +ruma-client-api = { version = "0.12.2", path = "../ruma-client-api", features = ["client"], optional = true } ruma-common = { version = "0.6.0", path = "../ruma-common" } ruma-events = { version = "0.24.4", path = "../ruma-events" } ruma-identifiers = { version = "0.20.0", path = "../ruma-identifiers" } diff --git a/crates/ruma-client-api/CHANGELOG.md b/crates/ruma-client-api/CHANGELOG.md index 620e861d..52905656 100644 --- a/crates/ruma-client-api/CHANGELOG.md +++ b/crates/ruma-client-api/CHANGELOG.md @@ -1,5 +1,7 @@ # [unreleased] +# 0.12.2 + Improvements * Add `auth_type` and `session` accessors to `uiaa::IncomingAuthData` diff --git a/crates/ruma-client-api/Cargo.toml b/crates/ruma-client-api/Cargo.toml index f27d36c2..4fe25ec3 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.12.1" +version = "0.12.2" edition = "2018" [package.metadata.docs.rs] diff --git a/crates/ruma-client/Cargo.toml b/crates/ruma-client/Cargo.toml index a51ffabc..57af59eb 100644 --- a/crates/ruma-client/Cargo.toml +++ b/crates/ruma-client/Cargo.toml @@ -46,7 +46,7 @@ hyper-tls = { version = "0.5.0", optional = true } isahc-crate = { package = "isahc", version = "1.3.1", optional = true } reqwest = { version = "0.11.4", optional = true, default-features = false } ruma-api = { version = "0.18.3", path = "../ruma-api" } -ruma-client-api = { version = "0.12.1", path = "../ruma-client-api", optional = true, features = ["client"] } +ruma-client-api = { version = "0.12.2", path = "../ruma-client-api", optional = true, features = ["client"] } ruma-common = { version = "0.6.0", path = "../ruma-common" } ruma-identifiers = { version = "0.20.0", path = "../ruma-identifiers" } ruma-serde = { version = "0.5.0", path = "../ruma-serde" } @@ -54,4 +54,4 @@ serde = { version = "1.0.118", features = ["derive"] } serde_json = "1.0.61" [dev-dependencies] -ruma-client-api = { version = "0.12.1", path = "../ruma-client-api", features = ["client"] } +ruma-client-api = { version = "0.12.2", path = "../ruma-client-api", features = ["client"] } diff --git a/crates/ruma/Cargo.toml b/crates/ruma/Cargo.toml index 53c0197a..4f1bbd1c 100644 --- a/crates/ruma/Cargo.toml +++ b/crates/ruma/Cargo.toml @@ -130,7 +130,7 @@ ruma-state-res = { version = "0.3.0", path = "../ruma-state-res", optional = tru ruma-api = { version = "0.18.3", path = "../ruma-api", optional = true } ruma-appservice-api = { version = "0.4.0", path = "../ruma-appservice-api", optional = true } -ruma-client-api = { version = "0.12.1", path = "../ruma-client-api", optional = true } +ruma-client-api = { version = "0.12.2", path = "../ruma-client-api", optional = true } ruma-federation-api = { version = "0.3.0", path = "../ruma-federation-api", optional = true } ruma-identity-service-api = { version = "0.3.0", path = "../ruma-identity-service-api", optional = true } ruma-push-gateway-api = { version = "0.3.0", path = "../ruma-push-gateway-api", optional = true }