diff --git a/crates/ruma-push-gateway-api/CHANGELOG.md b/crates/ruma-push-gateway-api/CHANGELOG.md index 011b0674..18496820 100644 --- a/crates/ruma-push-gateway-api/CHANGELOG.md +++ b/crates/ruma-push-gateway-api/CHANGELOG.md @@ -1,5 +1,7 @@ # [unreleased] +# 0.6.0 + Breaking changes: * Remove `PartialEq` implementation for `NotificationCounts` diff --git a/crates/ruma-push-gateway-api/Cargo.toml b/crates/ruma-push-gateway-api/Cargo.toml index a058dd14..05a05fe9 100644 --- a/crates/ruma-push-gateway-api/Cargo.toml +++ b/crates/ruma-push-gateway-api/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "ruma-push-gateway-api" -version = "0.5.0" +version = "0.6.0" description = "Types for the endpoints in the Matrix push gateway API." homepage = "https://www.ruma.io/" keywords = ["matrix", "chat", "messaging", "ruma"] diff --git a/crates/ruma/Cargo.toml b/crates/ruma/Cargo.toml index 5d014c5a..5167fac0 100644 --- a/crates/ruma/Cargo.toml +++ b/crates/ruma/Cargo.toml @@ -217,7 +217,7 @@ ruma-appservice-api = { version = "0.6.0", path = "../ruma-appservice-api", opti ruma-client-api = { version = "0.15.0", path = "../ruma-client-api", optional = true } ruma-federation-api = { version = "0.6.0", path = "../ruma-federation-api", optional = true } ruma-identity-service-api = { version = "0.6.0", path = "../ruma-identity-service-api", optional = true } -ruma-push-gateway-api = { version = "0.5.0", path = "../ruma-push-gateway-api", optional = true } +ruma-push-gateway-api = { version = "0.6.0", path = "../ruma-push-gateway-api", optional = true } [dev-dependencies] serde = { version = "1.0.118", features = ["derive"] }