Release ruma-federation-api 0.9.0

This commit is contained in:
Kévin Commaille 2024-05-09 12:55:58 +02:00
parent 00a332b037
commit 699053d629
No known key found for this signature in database
GPG Key ID: 0C971D9DBC9D678D
3 changed files with 9 additions and 6 deletions

View File

@ -21,7 +21,7 @@ ruma-common = { version = "0.13.0", path = "crates/ruma-common" }
ruma-client = { version = "0.12.0", path = "crates/ruma-client" }
ruma-client-api = { version = "0.18.0", path = "crates/ruma-client-api" }
ruma-events = { version = "0.28.0", path = "crates/ruma-events" }
ruma-federation-api = { version = "0.8.0", path = "crates/ruma-federation-api" }
ruma-federation-api = { version = "0.9.0", path = "crates/ruma-federation-api" }
ruma-html = { version = "0.2.0", path = "crates/ruma-html" }
ruma-identifiers-validation = { version = "0.9.5", path = "crates/ruma-identifiers-validation" }
ruma-identity-service-api = { version = "0.9.0", path = "crates/ruma-identity-service-api" }

View File

@ -1,16 +1,19 @@
# [unreleased]
# 0.9.0
Breaking changes:
* Use `RawValue` to represent body of `/v1/send_join` request, rather than incorrectly using
- Use `RawValue` to represent body of `/v1/send_join` request, rather than incorrectly using
query parameters
- The http crate had a major version bump to version 1.1
Improvements:
* Implement `From<SpaceHierarchyParentSummary>` for `SpaceHierarchyChildSummary`
* Add unstable support for optional `via` field on the `create_invite` endpoint request from
- Implement `From<SpaceHierarchyParentSummary>` for `SpaceHierarchyChildSummary`
- Add unstable support for optional `via` field on the `create_invite` endpoint request from
MSC4125 behind the `unstable-msc4125` feature.
* Add unstable support for the `report_content` endpoint from MSC3843 behind the
- Add unstable support for the `report_content` endpoint from MSC3843 behind the
`unstable-msc3843` feature.
# 0.8.0

View File

@ -7,7 +7,7 @@ license = "MIT"
name = "ruma-federation-api"
readme = "README.md"
repository = "https://github.com/ruma/ruma"
version = "0.8.0"
version = "0.9.0"
edition = "2021"
rust-version = { workspace = true }