Release ruma-api 0.17.0

This commit is contained in:
Jonas Platte 2021-05-17 00:56:47 +02:00
parent 68250ae726
commit e705fd9246
No known key found for this signature in database
GPG Key ID: 7D261D771D915378
10 changed files with 14 additions and 12 deletions

View File

@ -11,7 +11,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.17.0-alpha.4" version = "0.17.0"
edition = "2018" edition = "2018"
[dependencies] [dependencies]

View File

@ -1,4 +1,6 @@
# 0.17.0 (unreleased) # [unreleased]
# 0.17.0
Breaking changes: Breaking changes:
@ -23,7 +25,7 @@ Improvements:
Bug fixes: Bug fixes:
* Prevent panic when building requests with an invalid URI * Prevent panic when building requests with an invalid URI
# 0.16.1 # 0.16.1

View File

@ -11,7 +11,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.17.0-alpha.4" version = "0.17.0"
edition = "2018" edition = "2018"
[package.metadata.docs.rs] [package.metadata.docs.rs]
@ -22,7 +22,7 @@ rustdoc-args = ["--cfg", "docsrs"]
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.17.0-alpha.4", path = "../ruma-api-macros" } ruma-api-macros = { version = "=0.17.0", path = "../ruma-api-macros" }
ruma-identifiers = { version = "0.19.1", path = "../ruma-identifiers" } ruma-identifiers = { version = "0.19.1", path = "../ruma-identifiers" }
ruma-serde = { version = "0.4.0", path = "../ruma-serde" } ruma-serde = { version = "0.4.0", path = "../ruma-serde" }
serde = { version = "1.0.118", features = ["derive"] } serde = { version = "1.0.118", features = ["derive"] }

View File

@ -12,7 +12,7 @@ version = "0.2.0-alpha.3"
edition = "2018" edition = "2018"
[dependencies] [dependencies]
ruma-api = { version = "=0.17.0-alpha.4", path = "../ruma-api" } ruma-api = { version = "0.17.0", path = "../ruma-api" }
ruma-client-api = { version = "=0.10.0-alpha.3", path = "../ruma-client-api", features = ["client"], optional = true } ruma-client-api = { version = "=0.10.0-alpha.3", path = "../ruma-client-api", features = ["client"], optional = true }
ruma-common = { version = "0.5.1", path = "../ruma-common" } ruma-common = { version = "0.5.1", path = "../ruma-common" }
ruma-events = { version = "0.22.0", path = "../ruma-events" } ruma-events = { version = "0.22.0", path = "../ruma-events" }

View File

@ -22,7 +22,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.17.0-alpha.4", path = "../ruma-api" } ruma-api = { version = "0.17.0", path = "../ruma-api" }
ruma-common = { version = "0.5.1", path = "../ruma-common" } ruma-common = { version = "0.5.1", path = "../ruma-common" }
ruma-events = { version = "0.22.0", path = "../ruma-events" } ruma-events = { version = "0.22.0", path = "../ruma-events" }
ruma-identifiers = { version = "0.19.1", path = "../ruma-identifiers" } ruma-identifiers = { version = "0.19.1", path = "../ruma-identifiers" }

View File

@ -40,7 +40,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.3", optional = true, default-features = false } reqwest = { version = "0.11.3", optional = true, default-features = false }
ruma-api = { version = "=0.17.0-alpha.4", path = "../ruma-api" } ruma-api = { version = "0.17.0", path = "../ruma-api" }
ruma-client-api = { version = "=0.10.0-alpha.3", path = "../ruma-client-api", optional = true, features = ["client"] } ruma-client-api = { version = "=0.10.0-alpha.3", path = "../ruma-client-api", optional = true, features = ["client"] }
ruma-common = { version = "0.5.1", path = "../ruma-common" } ruma-common = { version = "0.5.1", path = "../ruma-common" }
ruma-events = { version = "0.22.0", path = "../ruma-events" } ruma-events = { version = "0.22.0", path = "../ruma-events" }

View File

@ -16,7 +16,7 @@ version = "0.1.0-alpha.2"
[dependencies] [dependencies]
js_int = { version = "0.2.0", features = ["serde"] } js_int = { version = "0.2.0", features = ["serde"] }
ruma-api = { version = "=0.17.0-alpha.4", path = "../ruma-api" } ruma-api = { version = "0.17.0", path = "../ruma-api" }
ruma-common = { version = "0.5.1", path = "../ruma-common" } ruma-common = { version = "0.5.1", path = "../ruma-common" }
ruma-events = { version = "0.22.0", path = "../ruma-events" } ruma-events = { version = "0.22.0", path = "../ruma-events" }
ruma-identifiers = { version = "0.19.1", path = "../ruma-identifiers" } ruma-identifiers = { version = "0.19.1", path = "../ruma-identifiers" }

View File

@ -12,7 +12,7 @@ edition = "2018"
[dependencies] [dependencies]
js_int = { version = "0.2.0", features = ["serde"] } js_int = { version = "0.2.0", features = ["serde"] }
ruma-api = { version = "=0.17.0-alpha.4", path = "../ruma-api" } ruma-api = { version = "0.17.0", path = "../ruma-api" }
ruma-common = { version = "0.5.1", path = "../ruma-common" } ruma-common = { version = "0.5.1", path = "../ruma-common" }
ruma-identifiers = { version = "0.19.1", path = "../ruma-identifiers" } ruma-identifiers = { version = "0.19.1", path = "../ruma-identifiers" }
ruma-serde = { version = "0.4.0", path = "../ruma-serde" } ruma-serde = { version = "0.4.0", path = "../ruma-serde" }

View File

@ -12,7 +12,7 @@ edition = "2018"
[dependencies] [dependencies]
js_int = { version = "0.2.0", features = ["serde"] } js_int = { version = "0.2.0", features = ["serde"] }
ruma-api = { version = "=0.17.0-alpha.4", path = "../ruma-api" } ruma-api = { version = "0.17.0", path = "../ruma-api" }
ruma-common = { version = "0.5.1", path = "../ruma-common" } ruma-common = { version = "0.5.1", path = "../ruma-common" }
ruma-events = { version = "0.22.0", path = "../ruma-events" } ruma-events = { version = "0.22.0", path = "../ruma-events" }
ruma-identifiers = { version = "0.19.1", path = "../ruma-identifiers" } ruma-identifiers = { version = "0.19.1", path = "../ruma-identifiers" }

View File

@ -28,7 +28,7 @@ ruma-events = { version = "0.22.0", path = "../ruma-events", optional = true }
ruma-signatures = { version = "0.7.1", path = "../ruma-signatures", optional = true } ruma-signatures = { version = "0.7.1", path = "../ruma-signatures", optional = true }
ruma-state-res = { version = "0.1.0", path = "../ruma-state-res", optional = true } ruma-state-res = { version = "0.1.0", path = "../ruma-state-res", optional = true }
ruma-api = { version = "=0.17.0-alpha.4", path = "../ruma-api", optional = true } ruma-api = { version = "0.17.0", path = "../ruma-api", optional = true }
ruma-appservice-api = { version = "=0.2.0-alpha.3", path = "../ruma-appservice-api", optional = true } ruma-appservice-api = { version = "=0.2.0-alpha.3", path = "../ruma-appservice-api", optional = true }
ruma-client-api = { version = "=0.10.0-alpha.3", path = "../ruma-client-api", optional = true } ruma-client-api = { version = "=0.10.0-alpha.3", path = "../ruma-client-api", optional = true }
ruma-federation-api = { version = "=0.1.0-alpha.2", path = "../ruma-federation-api", optional = true } ruma-federation-api = { version = "=0.1.0-alpha.2", path = "../ruma-federation-api", optional = true }