Release ruma-api 0.17.0-alpha.1
This commit is contained in:
parent
fa8c7b020b
commit
dbdbc148ea
@ -12,11 +12,11 @@ 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.16.1"
|
version = "0.17.0-alpha.1"
|
||||||
edition = "2018"
|
edition = "2018"
|
||||||
|
|
||||||
[dependencies]
|
[dependencies]
|
||||||
proc-macro2 = "1.0.18"
|
proc-macro2 = "1.0.19"
|
||||||
quote = "1.0.7"
|
quote = "1.0.7"
|
||||||
syn = { version = "1.0.31", features = ["full", "extra-traits"] }
|
syn = { version = "1.0.31", features = ["full", "extra-traits"] }
|
||||||
|
|
||||||
|
@ -1,5 +1,12 @@
|
|||||||
# [unreleased]
|
# [unreleased]
|
||||||
|
|
||||||
|
# 0.17.0
|
||||||
|
|
||||||
|
Breaking changes:
|
||||||
|
|
||||||
|
* Update the syntax of the `ruma_api!` macro. Colons are now required after the keywords `metadata`,
|
||||||
|
`request` and `response`.
|
||||||
|
|
||||||
# 0.16.1
|
# 0.16.1
|
||||||
|
|
||||||
Bug fixes:
|
Bug fixes:
|
||||||
|
@ -12,17 +12,17 @@ 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.16.1"
|
version = "0.17.0-alpha.1"
|
||||||
edition = "2018"
|
edition = "2018"
|
||||||
|
|
||||||
[dependencies]
|
[dependencies]
|
||||||
http = "0.2.1"
|
http = "0.2.1"
|
||||||
percent-encoding = "2.1.0"
|
percent-encoding = "2.1.0"
|
||||||
ruma-api-macros = { version = "=0.16.1", path = "../ruma-api-macros" }
|
ruma-api-macros = { version = "=0.17.0-alpha.1", path = "../ruma-api-macros" }
|
||||||
ruma-identifiers = { version = "0.17.1", path = "../ruma-identifiers" }
|
ruma-identifiers = { version = "0.17.1", path = "../ruma-identifiers" }
|
||||||
ruma-serde = { version = "0.2.3", path = "../ruma-serde" }
|
ruma-serde = { version = "0.2.3", path = "../ruma-serde" }
|
||||||
serde = { version = "1.0.113", features = ["derive"] }
|
serde = { version = "1.0.114", features = ["derive"] }
|
||||||
serde_json = "1.0.55"
|
serde_json = "1.0.57"
|
||||||
strum = "0.18.0"
|
strum = "0.18.0"
|
||||||
|
|
||||||
[dev-dependencies]
|
[dev-dependencies]
|
||||||
|
@ -12,7 +12,7 @@ version = "0.1.0"
|
|||||||
edition = "2018"
|
edition = "2018"
|
||||||
|
|
||||||
[dependencies]
|
[dependencies]
|
||||||
ruma-api = { version = "0.16.1", path = "../ruma-api" }
|
ruma-api = { version = "=0.17.0-alpha.1", path = "../ruma-api" }
|
||||||
ruma-common = { version = "0.2.0", path = "../ruma-common" }
|
ruma-common = { version = "0.2.0", path = "../ruma-common" }
|
||||||
ruma-events = { version = "=0.22.0-alpha.1", path = "../ruma-events" }
|
ruma-events = { version = "=0.22.0-alpha.1", path = "../ruma-events" }
|
||||||
ruma-identifiers = { version = "0.17.1", path = "../ruma-identifiers" }
|
ruma-identifiers = { version = "0.17.1", path = "../ruma-identifiers" }
|
||||||
|
@ -19,7 +19,7 @@ edition = "2018"
|
|||||||
[dependencies]
|
[dependencies]
|
||||||
http = "0.2.1"
|
http = "0.2.1"
|
||||||
js_int = { version = "0.1.7", features = ["serde"] }
|
js_int = { version = "0.1.7", features = ["serde"] }
|
||||||
ruma-api = { version = "0.16.1", path = "../ruma-api" }
|
ruma-api = { version = "=0.17.0-alpha.1", path = "../ruma-api" }
|
||||||
ruma-common = { version = "0.2.0", path = "../ruma-common" }
|
ruma-common = { version = "0.2.0", path = "../ruma-common" }
|
||||||
ruma-events = { version = "=0.22.0-alpha.1", path = "../ruma-events" }
|
ruma-events = { version = "=0.22.0-alpha.1", path = "../ruma-events" }
|
||||||
ruma-identifiers = { version = "0.17.1", path = "../ruma-identifiers" }
|
ruma-identifiers = { version = "0.17.1", path = "../ruma-identifiers" }
|
||||||
|
@ -17,7 +17,7 @@ version = "0.0.2"
|
|||||||
|
|
||||||
[dependencies]
|
[dependencies]
|
||||||
js_int = "0.1.7"
|
js_int = "0.1.7"
|
||||||
ruma-api = { version = "0.16.1", path = "../ruma-api" }
|
ruma-api = { version = "=0.17.0-alpha.1", path = "../ruma-api" }
|
||||||
ruma-common = { version = "0.2.0", path = "../ruma-common" }
|
ruma-common = { version = "0.2.0", path = "../ruma-common" }
|
||||||
ruma-events = { version = "=0.22.0-alpha.1", path = "../ruma-events" }
|
ruma-events = { version = "=0.22.0-alpha.1", path = "../ruma-events" }
|
||||||
ruma-identifiers = { version = "0.17.1", path = "../ruma-identifiers" }
|
ruma-identifiers = { version = "0.17.1", path = "../ruma-identifiers" }
|
||||||
|
@ -30,7 +30,7 @@ ruma-identifiers-macros = { version = "0.17.1", path = "../ruma-identifiers-macr
|
|||||||
ruma-events = { version = "=0.22.0-alpha.1", path = "../ruma-events", optional = true }
|
ruma-events = { version = "=0.22.0-alpha.1", path = "../ruma-events", optional = true }
|
||||||
ruma-signatures = { version = "0.6.0-dev.1", path = "../ruma-signatures", optional = true }
|
ruma-signatures = { version = "0.6.0-dev.1", path = "../ruma-signatures", optional = true }
|
||||||
|
|
||||||
ruma-api = { version = "0.16.1", path = "../ruma-api", optional = true }
|
ruma-api = { version = "=0.17.0-alpha.1", path = "../ruma-api", optional = true }
|
||||||
ruma-appservice-api = { version = "0.1.0", path = "../ruma-appservice-api", optional = true }
|
ruma-appservice-api = { version = "0.1.0", path = "../ruma-appservice-api", optional = true }
|
||||||
ruma-client-api = { version = "0.9.0", path = "../ruma-client-api", optional = true }
|
ruma-client-api = { version = "0.9.0", path = "../ruma-client-api", optional = true }
|
||||||
ruma-federation-api = { version = "0.0.2", path = "../ruma-federation-api", optional = true }
|
ruma-federation-api = { version = "0.0.2", path = "../ruma-federation-api", optional = true }
|
||||||
|
Loading…
x
Reference in New Issue
Block a user