diff --git a/crates/ruma-identity-service-api/CHANGELOG.md b/crates/ruma-identity-service-api/CHANGELOG.md index ae95294b..1283ca12 100644 --- a/crates/ruma-identity-service-api/CHANGELOG.md +++ b/crates/ruma-identity-service-api/CHANGELOG.md @@ -1,5 +1,11 @@ # [unreleased] +# 0.2.0 + +Breaking changes: + +* Make `tos::get_terms_of_service::v2::Policies` non-exhaustive + Improvements: * Add more endpoints: diff --git a/crates/ruma-identity-service-api/Cargo.toml b/crates/ruma-identity-service-api/Cargo.toml index d1d24122..704907e6 100644 --- a/crates/ruma-identity-service-api/Cargo.toml +++ b/crates/ruma-identity-service-api/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "ruma-identity-service-api" -version = "0.1.0" +version = "0.2.0" authors = ["Jonas Platte "] description = "Types for the endpoints in the Matrix identity service API." homepage = "https://www.ruma.io/" diff --git a/crates/ruma/Cargo.toml b/crates/ruma/Cargo.toml index c96808ec..a65b804f 100644 --- a/crates/ruma/Cargo.toml +++ b/crates/ruma/Cargo.toml @@ -132,7 +132,7 @@ 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.11.0", path = "../ruma-client-api", optional = true } ruma-federation-api = { version = "0.2.0", path = "../ruma-federation-api", optional = true } -ruma-identity-service-api = { version = "0.1.0", path = "../ruma-identity-service-api", optional = true } +ruma-identity-service-api = { version = "0.2.0", path = "../ruma-identity-service-api", optional = true } ruma-push-gateway-api = { version = "0.1.0", path = "../ruma-push-gateway-api", optional = true } [dev-dependencies]