diff --git a/bindings/matrix-sdk-ffi/CHANGELOG.md b/bindings/matrix-sdk-ffi/CHANGELOG.md index 2c1543eb8..f43b80416 100644 --- a/bindings/matrix-sdk-ffi/CHANGELOG.md +++ b/bindings/matrix-sdk-ffi/CHANGELOG.md @@ -35,6 +35,8 @@ All notable changes to this project will be documented in this file. This is primarily for Element X to give a dedicated error message in case it connects a homeserver with only this method available. ([#5222](https://github.com/matrix-org/matrix-rust-sdk/pull/5222)) +- Add new API to decline calls ([MSC4310](https://github.com/matrix-org/matrix-spec-proposals/pull/4310)): `Room::decline_call` and `Room::subscribe_to_call_decline_events` + ([#5614](https://github.com/matrix-org/matrix-rust-sdk/pull/5614)) ### Breaking changes: diff --git a/crates/matrix-sdk/CHANGELOG.md b/crates/matrix-sdk/CHANGELOG.md index 569c64aee..13fc5d6b2 100644 --- a/crates/matrix-sdk/CHANGELOG.md +++ b/crates/matrix-sdk/CHANGELOG.md @@ -46,6 +46,8 @@ All notable changes to this project will be documented in this file. - Add support to accept historic room key bundles that arrive out of order, i.e. the bundle arrives after the invite has already been accepted. ([#5322](https://github.com/matrix-org/matrix-rust-sdk/pull/5322)) +- Add new API to decline calls ([MSC4310](https://github.com/matrix-org/matrix-spec-proposals/pull/4310)): `Room::make_decline_call_event` and `Room::subscribe_to_call_decline_events` + ([#5614](https://github.com/matrix-org/matrix-rust-sdk/pull/5614)) - [**breaking**] `OAuth::login` now allows requesting additional scopes for the authorization code grant. ([#5395](https://github.com/matrix-org/matrix-rust-sdk/pull/5395))