Release ruma-api 0.19.0

This commit is contained in:
Jonas Platte 2022-02-19 01:43:01 +01:00
parent 90fd1d8f0a
commit c1ce58b461
No known key found for this signature in database
GPG Key ID: 7D261D771D915378
10 changed files with 19 additions and 10 deletions

View File

@ -7,7 +7,7 @@ license = "MIT"
name = "ruma-api-macros"
readme = "README.md"
repository = "https://github.com/ruma/ruma"
version = "0.18.5"
version = "0.19.0"
edition = "2018"
[lib]

View File

@ -1,9 +1,18 @@
# [unreleased]
# 0.19.0
Breaking changes:
* Remove the `RequestDeserializationError` and `ResponseDeserializationError`
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

View File

@ -7,7 +7,7 @@ license = "MIT"
name = "ruma-api"
readme = "README.md"
repository = "https://github.com/ruma/ruma"
version = "0.18.5"
version = "0.19.0"
edition = "2018"
[package.metadata.docs.rs]
@ -25,7 +25,7 @@ server = []
bytes = "1.0.1"
http = "0.2.2"
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-serde = { version = "0.6.0", path = "../ruma-serde" }
serde = { version = "1.0.118", features = ["derive"] }

View File

@ -20,7 +20,7 @@ client = []
server = []
[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-common = { version = "0.7.0", path = "../ruma-common" }
ruma-events = { version = "0.25.0", path = "../ruma-events" }

View File

@ -28,7 +28,7 @@ http = "0.2.2"
js_int = { version = "0.2.0", features = ["serde"] }
maplit = "1.0.2"
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-events = { version = "0.25.0", path = "../ruma-events" }
ruma-identifiers = { version = "0.21.0", path = "../ruma-identifiers" }

View File

@ -41,7 +41,7 @@ hyper-rustls-crate = { package = "hyper-rustls", version = "0.22.1", optional =
hyper-tls = { version = "0.5.0", optional = true }
isahc-crate = { package = "isahc", version = "1.3.1", optional = true }
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-common = { version = "0.7.0", path = "../ruma-common" }
ruma-identifiers = { version = "0.21.0", path = "../ruma-identifiers" }

View File

@ -24,7 +24,7 @@ server = []
[dependencies]
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-events = { version = "0.25.0", path = "../ruma-events" }
ruma-identifiers = { version = "0.21.0", path = "../ruma-identifiers" }

View File

@ -19,7 +19,7 @@ server = []
[dependencies]
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-identifiers = { version = "0.21.0", path = "../ruma-identifiers" }
ruma-serde = { version = "0.6.0", path = "../ruma-serde" }

View File

@ -19,7 +19,7 @@ server = []
[dependencies]
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-events = { version = "0.25.0", path = "../ruma-events" }
ruma-identifiers = { version = "0.21.0", path = "../ruma-identifiers" }

View File

@ -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-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-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 }