Release ruma-api 0.19.0
This commit is contained in:
parent
90fd1d8f0a
commit
c1ce58b461
@ -7,7 +7,7 @@ license = "MIT"
|
|||||||
name = "ruma-api-macros"
|
name = "ruma-api-macros"
|
||||||
readme = "README.md"
|
readme = "README.md"
|
||||||
repository = "https://github.com/ruma/ruma"
|
repository = "https://github.com/ruma/ruma"
|
||||||
version = "0.18.5"
|
version = "0.19.0"
|
||||||
edition = "2018"
|
edition = "2018"
|
||||||
|
|
||||||
[lib]
|
[lib]
|
||||||
|
@ -1,9 +1,18 @@
|
|||||||
# [unreleased]
|
# [unreleased]
|
||||||
|
|
||||||
|
# 0.19.0
|
||||||
|
|
||||||
Breaking changes:
|
Breaking changes:
|
||||||
|
|
||||||
* Remove the `RequestDeserializationError` and `ResponseDeserializationError`
|
* Remove the `RequestDeserializationError` and `ResponseDeserializationError`
|
||||||
types in favor of using `DeserializationError` directly
|
types in favor of using `DeserializationError` directly
|
||||||
|
* Replace singular `path` metadata field with `stable_path`, `r0_path` and
|
||||||
|
`unstable_path`
|
||||||
|
* Require callers of `OutgoingRequest::try_into_http_request` to pass a list of
|
||||||
|
server-supported matrix versions for selecting whether to use r0, unstable or
|
||||||
|
stable paths
|
||||||
|
* Require callers of `IncomingRequest::try_from_http_request` to pass path
|
||||||
|
arguments, to avoid unnecessary extra path parsing
|
||||||
|
|
||||||
# 0.18.5
|
# 0.18.5
|
||||||
|
|
||||||
|
@ -7,7 +7,7 @@ license = "MIT"
|
|||||||
name = "ruma-api"
|
name = "ruma-api"
|
||||||
readme = "README.md"
|
readme = "README.md"
|
||||||
repository = "https://github.com/ruma/ruma"
|
repository = "https://github.com/ruma/ruma"
|
||||||
version = "0.18.5"
|
version = "0.19.0"
|
||||||
edition = "2018"
|
edition = "2018"
|
||||||
|
|
||||||
[package.metadata.docs.rs]
|
[package.metadata.docs.rs]
|
||||||
@ -25,7 +25,7 @@ server = []
|
|||||||
bytes = "1.0.1"
|
bytes = "1.0.1"
|
||||||
http = "0.2.2"
|
http = "0.2.2"
|
||||||
percent-encoding = "2.1.0"
|
percent-encoding = "2.1.0"
|
||||||
ruma-api-macros = { version = "=0.18.5", path = "../ruma-api-macros" }
|
ruma-api-macros = { version = "=0.19.0", path = "../ruma-api-macros" }
|
||||||
ruma-identifiers = { version = "0.21.0", path = "../ruma-identifiers" }
|
ruma-identifiers = { version = "0.21.0", path = "../ruma-identifiers" }
|
||||||
ruma-serde = { version = "0.6.0", path = "../ruma-serde" }
|
ruma-serde = { version = "0.6.0", path = "../ruma-serde" }
|
||||||
serde = { version = "1.0.118", features = ["derive"] }
|
serde = { version = "1.0.118", features = ["derive"] }
|
||||||
|
@ -20,7 +20,7 @@ client = []
|
|||||||
server = []
|
server = []
|
||||||
|
|
||||||
[dependencies]
|
[dependencies]
|
||||||
ruma-api = { version = "0.18.5", path = "../ruma-api" }
|
ruma-api = { version = "0.19.0", path = "../ruma-api" }
|
||||||
ruma-client-api = { version = "0.12.3", path = "../ruma-client-api", features = ["client"], optional = true }
|
ruma-client-api = { version = "0.12.3", path = "../ruma-client-api", features = ["client"], optional = true }
|
||||||
ruma-common = { version = "0.7.0", path = "../ruma-common" }
|
ruma-common = { version = "0.7.0", path = "../ruma-common" }
|
||||||
ruma-events = { version = "0.25.0", path = "../ruma-events" }
|
ruma-events = { version = "0.25.0", path = "../ruma-events" }
|
||||||
|
@ -28,7 +28,7 @@ http = "0.2.2"
|
|||||||
js_int = { version = "0.2.0", features = ["serde"] }
|
js_int = { version = "0.2.0", features = ["serde"] }
|
||||||
maplit = "1.0.2"
|
maplit = "1.0.2"
|
||||||
percent-encoding = "2.1.0"
|
percent-encoding = "2.1.0"
|
||||||
ruma-api = { version = "0.18.5", path = "../ruma-api" }
|
ruma-api = { version = "0.19.0", path = "../ruma-api" }
|
||||||
ruma-common = { version = "0.7.0", path = "../ruma-common" }
|
ruma-common = { version = "0.7.0", path = "../ruma-common" }
|
||||||
ruma-events = { version = "0.25.0", path = "../ruma-events" }
|
ruma-events = { version = "0.25.0", path = "../ruma-events" }
|
||||||
ruma-identifiers = { version = "0.21.0", path = "../ruma-identifiers" }
|
ruma-identifiers = { version = "0.21.0", path = "../ruma-identifiers" }
|
||||||
|
@ -41,7 +41,7 @@ hyper-rustls-crate = { package = "hyper-rustls", version = "0.22.1", optional =
|
|||||||
hyper-tls = { version = "0.5.0", optional = true }
|
hyper-tls = { version = "0.5.0", optional = true }
|
||||||
isahc-crate = { package = "isahc", version = "1.3.1", optional = true }
|
isahc-crate = { package = "isahc", version = "1.3.1", optional = true }
|
||||||
reqwest = { version = "0.11.4", optional = true, default-features = false }
|
reqwest = { version = "0.11.4", optional = true, default-features = false }
|
||||||
ruma-api = { version = "0.18.5", path = "../ruma-api" }
|
ruma-api = { version = "0.19.0", path = "../ruma-api" }
|
||||||
ruma-client-api = { version = "0.12.3", path = "../ruma-client-api", optional = true, features = ["client"] }
|
ruma-client-api = { version = "0.12.3", path = "../ruma-client-api", optional = true, features = ["client"] }
|
||||||
ruma-common = { version = "0.7.0", path = "../ruma-common" }
|
ruma-common = { version = "0.7.0", path = "../ruma-common" }
|
||||||
ruma-identifiers = { version = "0.21.0", path = "../ruma-identifiers" }
|
ruma-identifiers = { version = "0.21.0", path = "../ruma-identifiers" }
|
||||||
|
@ -24,7 +24,7 @@ server = []
|
|||||||
|
|
||||||
[dependencies]
|
[dependencies]
|
||||||
js_int = { version = "0.2.0", features = ["serde"] }
|
js_int = { version = "0.2.0", features = ["serde"] }
|
||||||
ruma-api = { version = "0.18.5", path = "../ruma-api" }
|
ruma-api = { version = "0.19.0", path = "../ruma-api" }
|
||||||
ruma-common = { version = "0.7.0", path = "../ruma-common" }
|
ruma-common = { version = "0.7.0", path = "../ruma-common" }
|
||||||
ruma-events = { version = "0.25.0", path = "../ruma-events" }
|
ruma-events = { version = "0.25.0", path = "../ruma-events" }
|
||||||
ruma-identifiers = { version = "0.21.0", path = "../ruma-identifiers" }
|
ruma-identifiers = { version = "0.21.0", path = "../ruma-identifiers" }
|
||||||
|
@ -19,7 +19,7 @@ server = []
|
|||||||
|
|
||||||
[dependencies]
|
[dependencies]
|
||||||
js_int = { version = "0.2.0", features = ["serde"] }
|
js_int = { version = "0.2.0", features = ["serde"] }
|
||||||
ruma-api = { version = "0.18.5", path = "../ruma-api" }
|
ruma-api = { version = "0.19.0", path = "../ruma-api" }
|
||||||
ruma-common = { version = "0.7.0", path = "../ruma-common" }
|
ruma-common = { version = "0.7.0", path = "../ruma-common" }
|
||||||
ruma-identifiers = { version = "0.21.0", path = "../ruma-identifiers" }
|
ruma-identifiers = { version = "0.21.0", path = "../ruma-identifiers" }
|
||||||
ruma-serde = { version = "0.6.0", path = "../ruma-serde" }
|
ruma-serde = { version = "0.6.0", path = "../ruma-serde" }
|
||||||
|
@ -19,7 +19,7 @@ server = []
|
|||||||
|
|
||||||
[dependencies]
|
[dependencies]
|
||||||
js_int = { version = "0.2.0", features = ["serde"] }
|
js_int = { version = "0.2.0", features = ["serde"] }
|
||||||
ruma-api = { version = "0.18.5", path = "../ruma-api" }
|
ruma-api = { version = "0.19.0", path = "../ruma-api" }
|
||||||
ruma-common = { version = "0.7.0", path = "../ruma-common" }
|
ruma-common = { version = "0.7.0", path = "../ruma-common" }
|
||||||
ruma-events = { version = "0.25.0", path = "../ruma-events" }
|
ruma-events = { version = "0.25.0", path = "../ruma-events" }
|
||||||
ruma-identifiers = { version = "0.21.0", path = "../ruma-identifiers" }
|
ruma-identifiers = { version = "0.21.0", path = "../ruma-identifiers" }
|
||||||
|
@ -150,7 +150,7 @@ ruma-events = { version = "0.25.0", path = "../ruma-events", optional = true }
|
|||||||
ruma-signatures = { version = "0.9.0", path = "../ruma-signatures", optional = true }
|
ruma-signatures = { version = "0.9.0", path = "../ruma-signatures", optional = true }
|
||||||
ruma-state-res = { version = "0.4.1", path = "../ruma-state-res", optional = true }
|
ruma-state-res = { version = "0.4.1", path = "../ruma-state-res", optional = true }
|
||||||
|
|
||||||
ruma-api = { version = "0.18.5", path = "../ruma-api", optional = true }
|
ruma-api = { version = "0.19.0", path = "../ruma-api", optional = true }
|
||||||
ruma-appservice-api = { version = "0.4.0", path = "../ruma-appservice-api", optional = true }
|
ruma-appservice-api = { version = "0.4.0", path = "../ruma-appservice-api", optional = true }
|
||||||
ruma-client-api = { version = "0.12.3", path = "../ruma-client-api", optional = true }
|
ruma-client-api = { version = "0.12.3", path = "../ruma-client-api", optional = true }
|
||||||
ruma-federation-api = { version = "0.3.1", path = "../ruma-federation-api", optional = true }
|
ruma-federation-api = { version = "0.3.1", path = "../ruma-federation-api", optional = true }
|
||||||
|
Loading…
x
Reference in New Issue
Block a user