Release ruma-events 0.22.0-alpha.1

This commit is contained in:
Jonas Platte 2020-07-29 17:09:29 +02:00
parent 5086a6654a
commit fa8c7b020b
No known key found for this signature in database
GPG Key ID: CC154DE0E30B7C67
8 changed files with 18 additions and 16 deletions

View File

@ -27,5 +27,5 @@ strum = "0.18.0"
[dev-dependencies] [dev-dependencies]
ruma-common = { version = "0.2.0", path = "../ruma-common" } ruma-common = { version = "0.2.0", path = "../ruma-common" }
ruma-events = { version = "0.21.3", path = "../ruma-events" } ruma-events = { version = "=0.22.0-alpha.1", path = "../ruma-events" }
trybuild = "1.0.30" trybuild = "1.0.30"

View File

@ -14,7 +14,7 @@ edition = "2018"
[dependencies] [dependencies]
ruma-api = { version = "0.16.1", path = "../ruma-api" } ruma-api = { version = "0.16.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.21.3", 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" }
serde = { version = "1.0.113", features = ["derive"] } serde = { version = "1.0.113", features = ["derive"] }
serde_json = "1.0.55" serde_json = "1.0.55"

View File

@ -21,7 +21,7 @@ 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.16.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.21.3", 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" }
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.113", features = ["derive"] }

View File

@ -10,18 +10,18 @@ license = "MIT"
name = "ruma-events-macros" name = "ruma-events-macros"
readme = "README.md" readme = "README.md"
repository = "https://github.com/ruma/ruma" repository = "https://github.com/ruma/ruma"
version = "0.21.3" version = "0.22.0-alpha.1"
[dependencies] [dependencies]
syn = { version = "1.0.31", features = ["full"] } syn = { version = "1.0.36", features = ["full"] }
quote = "1.0.7" quote = "1.0.7"
proc-macro2 = "1.0.18" proc-macro2 = "1.0.19"
[lib] [lib]
proc-macro = true proc-macro = true
[dev-dependencies] [dev-dependencies]
ruma-identifiers = { version = "0.17.1", path = "../ruma-identifiers" } ruma-identifiers = { version = "0.17.1", path = "../ruma-identifiers" }
serde_json = "1.0.55" serde_json = "1.0.57"
js_int = { version = "0.1.7", features = ["serde"] } js_int = { version = "0.1.9", features = ["serde"] }
serde = { version = "1.0.113", features = ["derive"] } serde = { version = "1.0.114", features = ["derive"] }

View File

@ -1,5 +1,7 @@
# [unreleased] # [unreleased]
# 0.22.0
Breaking changes: Breaking changes:
* Change `get_message_events` limit field type from `Option<UInt>` to `UInt` * Change `get_message_events` limit field type from `Option<UInt>` to `UInt`

View File

@ -9,18 +9,18 @@ license = "MIT"
name = "ruma-events" name = "ruma-events"
readme = "README.md" readme = "README.md"
repository = "https://github.com/ruma/ruma" repository = "https://github.com/ruma/ruma"
version = "0.21.3" version = "0.22.0-alpha.1"
edition = "2018" edition = "2018"
[dependencies] [dependencies]
criterion = { version = "0.3.2", optional = true } criterion = { version = "0.3.3", optional = true }
js_int = { version = "0.1.7", features = ["serde"] } js_int = { version = "0.1.9", features = ["serde"] }
ruma-common = { version = "0.2.0", path = "../ruma-common" } ruma-common = { version = "0.2.0", path = "../ruma-common" }
ruma-events-macros = { version = "=0.21.3", path = "../ruma-events-macros" } ruma-events-macros = { version = "=0.22.0-alpha.1", path = "../ruma-events-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.113", features = ["derive"] }
serde_json = { version = "1.0.55", features = ["raw_value"] } serde_json = { version = "1.0.57", features = ["raw_value"] }
strum = { version = "0.18.0", features = ["derive"] } strum = { version = "0.18.0", features = ["derive"] }
[dev-dependencies] [dev-dependencies]

View File

@ -19,7 +19,7 @@ version = "0.0.2"
js_int = "0.1.7" js_int = "0.1.7"
ruma-api = { version = "0.16.1", path = "../ruma-api" } ruma-api = { version = "0.16.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.21.3", 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" }
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.113", features = ["derive"] }

View File

@ -27,7 +27,7 @@ ruma-common = { version = "0.2.0", path = "../ruma-common" }
ruma-identifiers = { version = "0.17.1", path = "../ruma-identifiers", features = ["serde"] } ruma-identifiers = { version = "0.17.1", path = "../ruma-identifiers", features = ["serde"] }
ruma-identifiers-macros = { version = "0.17.1", path = "../ruma-identifiers-macros" } ruma-identifiers-macros = { version = "0.17.1", path = "../ruma-identifiers-macros" }
ruma-events = { version = "0.21.3", 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.16.1", path = "../ruma-api", optional = true }