diff --git a/Cargo.toml b/Cargo.toml index 5ee46c7d..47e3db97 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -17,9 +17,9 @@ http = "0.2.8" js_int = "0.2.2" maplit = "1.0.2" ruma-appservice-api = { version = "0.9.0", path = "crates/ruma-appservice-api" } -ruma-common = { version = "0.12.0", path = "crates/ruma-common" } +ruma-common = { version = "0.12.1", path = "crates/ruma-common" } ruma-client = { version = "0.12.0", path = "crates/ruma-client" } -ruma-client-api = { version = "0.17.2", path = "crates/ruma-client-api" } +ruma-client-api = { version = "0.17.3", path = "crates/ruma-client-api" } ruma-events = { version = "0.27.9", path = "crates/ruma-events" } ruma-federation-api = { version = "0.8.0", path = "crates/ruma-federation-api" } ruma-html = { version = "0.1.0", path = "crates/ruma-html" } diff --git a/crates/ruma-client-api/CHANGELOG.md b/crates/ruma-client-api/CHANGELOG.md index 29ead982..146de8c5 100644 --- a/crates/ruma-client-api/CHANGELOG.md +++ b/crates/ruma-client-api/CHANGELOG.md @@ -6,6 +6,8 @@ Breaking changes: the `conditions` field is optional. - `MissingConditionsError` was removed. +# 0.17.3 + Bug fixes: - Fix deserialization of `claim_keys` responses without a `failures` field diff --git a/crates/ruma-client-api/Cargo.toml b/crates/ruma-client-api/Cargo.toml index 3e522b0c..41e1f47a 100644 --- a/crates/ruma-client-api/Cargo.toml +++ b/crates/ruma-client-api/Cargo.toml @@ -7,7 +7,7 @@ license = "MIT" name = "ruma-client-api" readme = "README.md" repository = "https://github.com/ruma/ruma" -version = "0.17.2" +version = "0.17.3" edition = "2021" rust-version = { workspace = true } diff --git a/crates/ruma-common/CHANGELOG.md b/crates/ruma-common/CHANGELOG.md index b5c7ab0d..fd9c1134 100644 --- a/crates/ruma-common/CHANGELOG.md +++ b/crates/ruma-common/CHANGELOG.md @@ -1,5 +1,7 @@ # [unreleased] +# 0.12.1 + Bug fixes: - Allow to deserialize `(New)ConditionalPushRule` with a missing `conditions` field. diff --git a/crates/ruma-common/Cargo.toml b/crates/ruma-common/Cargo.toml index 5d1537a2..b6a18af0 100644 --- a/crates/ruma-common/Cargo.toml +++ b/crates/ruma-common/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "ruma-common" -version = "0.12.0" +version = "0.12.1" description = "Common types for other ruma crates." homepage = "https://ruma.io/" keywords = ["matrix", "chat", "messaging", "ruma"]