Merge branch 'ruma-0.9.x'
This commit is contained in:
commit
6639c727ae
@ -19,8 +19,8 @@ maplit = "1.0.2"
|
|||||||
ruma-appservice-api = { version = "0.9.0", path = "crates/ruma-appservice-api" }
|
ruma-appservice-api = { version = "0.9.0", path = "crates/ruma-appservice-api" }
|
||||||
ruma-common = { version = "0.12.1", path = "crates/ruma-common" }
|
ruma-common = { version = "0.12.1", path = "crates/ruma-common" }
|
||||||
ruma-client = { version = "0.12.0", path = "crates/ruma-client" }
|
ruma-client = { version = "0.12.0", path = "crates/ruma-client" }
|
||||||
ruma-client-api = { version = "0.17.3", path = "crates/ruma-client-api" }
|
ruma-client-api = { version = "0.17.4", path = "crates/ruma-client-api" }
|
||||||
ruma-events = { version = "0.27.9", path = "crates/ruma-events" }
|
ruma-events = { version = "0.27.10", path = "crates/ruma-events" }
|
||||||
ruma-federation-api = { version = "0.8.0", path = "crates/ruma-federation-api" }
|
ruma-federation-api = { version = "0.8.0", path = "crates/ruma-federation-api" }
|
||||||
ruma-html = { version = "0.1.0", path = "crates/ruma-html" }
|
ruma-html = { version = "0.1.0", path = "crates/ruma-html" }
|
||||||
ruma-identifiers-validation = { version = "0.9.3", path = "crates/ruma-identifiers-validation" }
|
ruma-identifiers-validation = { version = "0.9.3", path = "crates/ruma-identifiers-validation" }
|
||||||
|
@ -6,6 +6,14 @@ Breaking changes:
|
|||||||
the `conditions` field is optional.
|
the `conditions` field is optional.
|
||||||
- `MissingConditionsError` was removed.
|
- `MissingConditionsError` was removed.
|
||||||
|
|
||||||
|
# 0.17.4
|
||||||
|
|
||||||
|
Improvements:
|
||||||
|
|
||||||
|
- Change the `avatar` field of `SlidingSyncRoom` from `Option` to `JsOption`
|
||||||
|
- This is a breaking change, but only for users enabling the
|
||||||
|
`unstable-msc3575` feature
|
||||||
|
|
||||||
# 0.17.3
|
# 0.17.3
|
||||||
|
|
||||||
Bug fixes:
|
Bug fixes:
|
||||||
|
@ -7,7 +7,7 @@ license = "MIT"
|
|||||||
name = "ruma-client-api"
|
name = "ruma-client-api"
|
||||||
readme = "README.md"
|
readme = "README.md"
|
||||||
repository = "https://github.com/ruma/ruma"
|
repository = "https://github.com/ruma/ruma"
|
||||||
version = "0.17.3"
|
version = "0.17.4"
|
||||||
edition = "2021"
|
edition = "2021"
|
||||||
rust-version = { workspace = true }
|
rust-version = { workspace = true }
|
||||||
|
|
||||||
|
@ -10,6 +10,14 @@ Improvements:
|
|||||||
- We previously already accepted custom or slightly malformed relations
|
- We previously already accepted custom or slightly malformed relations
|
||||||
- Now, even invalid / missing `rel_type` and `event_id` are accepted
|
- Now, even invalid / missing `rel_type` and `event_id` are accepted
|
||||||
|
|
||||||
|
# 0.27.10
|
||||||
|
|
||||||
|
Deprecations:
|
||||||
|
|
||||||
|
- Deprecate `event_id` methods on `Relation` types
|
||||||
|
- They will be removed in the next breaking-change release
|
||||||
|
- Please open an issue if you are currently using them
|
||||||
|
|
||||||
# 0.27.9
|
# 0.27.9
|
||||||
|
|
||||||
Bug fixes:
|
Bug fixes:
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
[package]
|
[package]
|
||||||
name = "ruma-events"
|
name = "ruma-events"
|
||||||
version = "0.27.9"
|
version = "0.27.10"
|
||||||
description = "Serializable types for the events in the Matrix specification."
|
description = "Serializable types for the events in the Matrix specification."
|
||||||
homepage = "https://ruma.io/"
|
homepage = "https://ruma.io/"
|
||||||
keywords = ["matrix", "chat", "messaging", "ruma"]
|
keywords = ["matrix", "chat", "messaging", "ruma"]
|
||||||
|
@ -1,5 +1,9 @@
|
|||||||
# [unreleased]
|
# [unreleased]
|
||||||
|
|
||||||
|
# 0.9.3
|
||||||
|
|
||||||
|
Upgrade `ruma-client-api` and re-export its new `unstable-msc3983` feature.
|
||||||
|
|
||||||
# 0.9.2
|
# 0.9.2
|
||||||
|
|
||||||
Upgrade `ruma-events` and re-export its new `unstable-msc3401` feature.
|
Upgrade `ruma-events` and re-export its new `unstable-msc3401` feature.
|
||||||
|
@ -7,7 +7,7 @@ homepage = "https://ruma.io/"
|
|||||||
repository = "https://github.com/ruma/ruma"
|
repository = "https://github.com/ruma/ruma"
|
||||||
readme = "README.md"
|
readme = "README.md"
|
||||||
license = "MIT"
|
license = "MIT"
|
||||||
version = "0.9.2"
|
version = "0.9.3"
|
||||||
edition = "2021"
|
edition = "2021"
|
||||||
rust-version = { workspace = true }
|
rust-version = { workspace = true }
|
||||||
|
|
||||||
|
@ -5,7 +5,7 @@ edition = "2021"
|
|||||||
publish = false
|
publish = false
|
||||||
|
|
||||||
[dependencies]
|
[dependencies]
|
||||||
ruma = { version = "0.9.2", path = "../../crates/ruma", features = ["client-api-c", "client-ext-client-api", "client-isahc", "rand"] }
|
ruma = { version = "0.9.3", path = "../../crates/ruma", features = ["client-api-c", "client-ext-client-api", "client-isahc", "rand"] }
|
||||||
|
|
||||||
anyhow = "1.0.37"
|
anyhow = "1.0.37"
|
||||||
isahc = "1.3.1"
|
isahc = "1.3.1"
|
||||||
|
@ -5,7 +5,7 @@ edition = "2021"
|
|||||||
publish = false
|
publish = false
|
||||||
|
|
||||||
[dependencies]
|
[dependencies]
|
||||||
ruma = { version = "0.9.2", path = "../../crates/ruma", features = ["client-api-c", "client-ext-client-api", "client-hyper-native-tls", "rand"] }
|
ruma = { version = "0.9.3", path = "../../crates/ruma", features = ["client-api-c", "client-ext-client-api", "client-hyper-native-tls", "rand"] }
|
||||||
|
|
||||||
anyhow = "1.0.37"
|
anyhow = "1.0.37"
|
||||||
tokio = { version = "1.0.1", features = ["macros", "rt"] }
|
tokio = { version = "1.0.1", features = ["macros", "rt"] }
|
||||||
|
@ -5,7 +5,7 @@ edition = "2021"
|
|||||||
publish = false
|
publish = false
|
||||||
|
|
||||||
[dependencies]
|
[dependencies]
|
||||||
ruma = { version = "0.9.2", path = "../../crates/ruma", features = ["client-api-c", "client-ext-client-api", "client-hyper-native-tls", "rand"] }
|
ruma = { version = "0.9.3", path = "../../crates/ruma", features = ["client-api-c", "client-ext-client-api", "client-hyper-native-tls", "rand"] }
|
||||||
# For building locally: use the git dependencies below.
|
# For building locally: use the git dependencies below.
|
||||||
# Browse the source at this revision here: https://github.com/ruma/ruma/tree/f161c8117c706fc52089999e1f406cf34276ec9d
|
# Browse the source at this revision here: https://github.com/ruma/ruma/tree/f161c8117c706fc52089999e1f406cf34276ec9d
|
||||||
# ruma = { git = "https://github.com/ruma/ruma", rev = "f161c8117c706fc52089999e1f406cf34276ec9d", features = ["client-api-c", "client", "client-hyper-native-tls", "events"] }
|
# ruma = { git = "https://github.com/ruma/ruma", rev = "f161c8117c706fc52089999e1f406cf34276ec9d", features = ["client-api-c", "client", "client-hyper-native-tls", "events"] }
|
||||||
|
@ -6,6 +6,6 @@ publish = false
|
|||||||
|
|
||||||
[dependencies]
|
[dependencies]
|
||||||
anyhow = "1.0.37"
|
anyhow = "1.0.37"
|
||||||
ruma = { version = "0.9.2", path = "../../crates/ruma", features = ["client-api-c", "client-ext-client-api", "client-hyper-native-tls"] }
|
ruma = { version = "0.9.3", path = "../../crates/ruma", features = ["client-api-c", "client-ext-client-api", "client-hyper-native-tls"] }
|
||||||
tokio = { version = "1.0.1", features = ["macros", "rt"] }
|
tokio = { version = "1.0.1", features = ["macros", "rt"] }
|
||||||
tokio-stream = { version = "0.1.1", default-features = false }
|
tokio-stream = { version = "0.1.1", default-features = false }
|
||||||
|
Loading…
x
Reference in New Issue
Block a user