From 33bb9bd8acb108f00bc924af7985c7d065f3e400 Mon Sep 17 00:00:00 2001 From: Jonas Platte Date: Mon, 17 May 2021 01:20:15 +0200 Subject: [PATCH] Release ruma-push-gateway-api 0.1.0 --- crates/ruma-push-gateway-api/CHANGELOG.md | 11 +++++++++-- crates/ruma-push-gateway-api/Cargo.toml | 2 +- crates/ruma/Cargo.toml | 2 +- 3 files changed, 11 insertions(+), 4 deletions(-) diff --git a/crates/ruma-push-gateway-api/CHANGELOG.md b/crates/ruma-push-gateway-api/CHANGELOG.md index c74c51d2..c26e0130 100644 --- a/crates/ruma-push-gateway-api/CHANGELOG.md +++ b/crates/ruma-push-gateway-api/CHANGELOG.md @@ -1,6 +1,13 @@ -# 0.1.0 (unreleased) +# [unreleased] -* Upgrade dependencies +# 0.1.0 + +Breaking changes: + +* Remove `Copy` implementation for `NotificationCounts` to avoid simple changes + being breaking +* Change `Box` to `&RawJsonValue` in request types +* Upgrade public dependencies # 0.0.1 diff --git a/crates/ruma-push-gateway-api/Cargo.toml b/crates/ruma-push-gateway-api/Cargo.toml index 188b0897..9457132a 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.1.0-alpha.1" +version = "0.1.0" authors = ["Jonas Platte "] description = "Types for the endpoints in the Matrix push gateway API." homepage = "https://www.ruma.io/" diff --git a/crates/ruma/Cargo.toml b/crates/ruma/Cargo.toml index c2a48459..44ce167b 100644 --- a/crates/ruma/Cargo.toml +++ b/crates/ruma/Cargo.toml @@ -33,7 +33,7 @@ ruma-appservice-api = { version = "0.2.0", path = "../ruma-appservice-api", opti ruma-client-api = { version = "0.10.0", 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-alpha.1", path = "../ruma-push-gateway-api", optional = true } +ruma-push-gateway-api = { version = "0.1.0", path = "../ruma-push-gateway-api", optional = true } [dev-dependencies] serde = { version = "1.0.118", features = ["derive"] }