Release ruma-api 0.18.1

This commit is contained in:
Jonas Platte 2021-08-11 17:34:45 +02:00
parent dbc0c40ec9
commit 7f457d6463
No known key found for this signature in database
GPG Key ID: CC154DE0E30B7C67
10 changed files with 19 additions and 10 deletions

View File

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

View File

@ -1,5 +1,14 @@
# [unreleased]
# 0.18.1
Breaking changes:
* Generate "struct structs" for `Request` and `Response`, even if there are no
fields
* We used to generate unit structs when there's no fields
* Upgrade dependencies
Bug fixes:
* Allow all borrowing query and / or body parameters in `ruma_api!` to be

View File

@ -11,7 +11,7 @@ license = "MIT"
name = "ruma-api"
readme = "README.md"
repository = "https://github.com/ruma/ruma"
version = "0.17.2"
version = "0.18.1"
edition = "2018"
[package.metadata.docs.rs]
@ -29,7 +29,7 @@ server = []
bytes = "1.0.1"
http = "0.2.2"
percent-encoding = "2.1.0"
ruma-api-macros = { version = "=0.17.2", path = "../ruma-api-macros" }
ruma-api-macros = { version = "=0.18.1", path = "../ruma-api-macros" }
ruma-identifiers = { version = "0.20.0", path = "../ruma-identifiers" }
ruma-serde = { version = "0.5.0", path = "../ruma-serde" }
serde = { version = "1.0.118", features = ["derive"] }

View File

@ -21,7 +21,7 @@ client = []
server = []
[dependencies]
ruma-api = { version = "0.17.2", path = "../ruma-api" }
ruma-api = { version = "0.18.1", path = "../ruma-api" }
ruma-client-api = { version = "0.11.2", path = "../ruma-client-api", features = ["client"], optional = true }
ruma-common = { version = "0.6.0", path = "../ruma-common" }
ruma-events = { version = "0.23.3", path = "../ruma-events" }

View File

@ -34,7 +34,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.17.2", path = "../ruma-api" }
ruma-api = { version = "0.18.1", path = "../ruma-api" }
ruma-common = { version = "0.6.0", path = "../ruma-common" }
ruma-events = { version = "0.23.3", path = "../ruma-events" }
ruma-identifiers = { version = "0.20.0", path = "../ruma-identifiers" }

View File

@ -45,7 +45,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.17.2", path = "../ruma-api" }
ruma-api = { version = "0.18.1", path = "../ruma-api" }
ruma-client-api = { version = "0.11.2", path = "../ruma-client-api", optional = true, features = ["client"] }
ruma-common = { version = "0.6.0", path = "../ruma-common" }
ruma-identifiers = { version = "0.20.0", path = "../ruma-identifiers" }

View File

@ -26,7 +26,7 @@ server = []
[dependencies]
js_int = { version = "0.2.0", features = ["serde"] }
ruma-api = { version = "0.17.2", path = "../ruma-api" }
ruma-api = { version = "0.18.1", path = "../ruma-api" }
ruma-common = { version = "0.6.0", path = "../ruma-common" }
ruma-events = { version = "0.23.3", path = "../ruma-events" }
ruma-identifiers = { version = "0.20.0", path = "../ruma-identifiers" }

View File

@ -20,7 +20,7 @@ server = []
[dependencies]
js_int = { version = "0.2.0", features = ["serde"] }
ruma-api = { version = "0.17.2", path = "../ruma-api" }
ruma-api = { version = "0.18.1", path = "../ruma-api" }
ruma-common = { version = "0.6.0", path = "../ruma-common" }
ruma-identifiers = { version = "0.20.0", path = "../ruma-identifiers" }
ruma-serde = { version = "0.5.0", path = "../ruma-serde" }

View File

@ -20,7 +20,7 @@ server = []
[dependencies]
js_int = { version = "0.2.0", features = ["serde"] }
ruma-api = { version = "0.17.2", path = "../ruma-api" }
ruma-api = { version = "0.18.1", path = "../ruma-api" }
ruma-common = { version = "0.6.0", path = "../ruma-common" }
ruma-events = { version = "0.23.3", path = "../ruma-events" }
ruma-identifiers = { version = "0.20.0", path = "../ruma-identifiers" }

View File

@ -128,7 +128,7 @@ ruma-events = { version = "0.23.3", path = "../ruma-events", optional = true }
ruma-signatures = { version = "0.9.0", path = "../ruma-signatures", optional = true }
ruma-state-res = { version = "0.2.0", path = "../ruma-state-res", optional = true }
ruma-api = { version = "0.17.2", path = "../ruma-api", optional = true }
ruma-api = { version = "0.18.1", path = "../ruma-api", optional = true }
ruma-appservice-api = { version = "0.3.0", path = "../ruma-appservice-api", optional = true }
ruma-client-api = { version = "0.11.2", path = "../ruma-client-api", optional = true }
ruma-federation-api = { version = "0.2.0", path = "../ruma-federation-api", optional = true }