Release ruma-events 0.22.1

This commit is contained in:
Jonas Platte 2021-05-17 16:58:57 +02:00
parent aa31418961
commit 085f082c5b
No known key found for this signature in database
GPG Key ID: CC154DE0E30B7C67
11 changed files with 17 additions and 11 deletions

View File

@ -30,7 +30,7 @@ serde_json = "1.0.61"
thiserror = "1.0.23" thiserror = "1.0.23"
[dev-dependencies] [dev-dependencies]
ruma-events = { version = "0.22.0", path = "../ruma-events" } ruma-events = { version = "0.22.1", path = "../ruma-events" }
trybuild = "1.0.38" trybuild = "1.0.38"
# These feature gates exist only for the tests. Disabling them results in a # These feature gates exist only for the tests. Disabling them results in a

View File

@ -15,7 +15,7 @@ edition = "2018"
ruma-api = { version = "0.17.0", path = "../ruma-api" } ruma-api = { version = "0.17.0", path = "../ruma-api" }
ruma-client-api = { version = "0.10.0", path = "../ruma-client-api", features = ["client"], optional = true } ruma-client-api = { version = "0.10.0", 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.1", path = "../ruma-events" }
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

@ -24,7 +24,7 @@ maplit = "1.0.2"
percent-encoding = "2.1.0" percent-encoding = "2.1.0"
ruma-api = { version = "0.17.0", 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.1", path = "../ruma-events" }
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

@ -43,7 +43,7 @@ reqwest = { version = "0.11.3", optional = true, default-features = false }
ruma-api = { version = "0.17.0", path = "../ruma-api" } ruma-api = { version = "0.17.0", path = "../ruma-api" }
ruma-client-api = { version = "0.10.0", path = "../ruma-client-api", optional = true, features = ["client"] } ruma-client-api = { version = "0.10.0", 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.1", path = "../ruma-events" }
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

@ -13,7 +13,7 @@ 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.22.0" version = "0.22.1"
[dependencies] [dependencies]
proc-macro-crate = "1.0.0" proc-macro-crate = "1.0.0"

View File

@ -1,5 +1,11 @@
# [unreleased] # [unreleased]
# 0.22.1
Bug fixes:
* Fix serialized format of `DummyEventContent`
# 0.22.0 # 0.22.0
Breaking changes: Breaking changes:

View File

@ -8,7 +8,7 @@ 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.22.0" version = "0.22.1"
edition = "2018" edition = "2018"
[dependencies] [dependencies]
@ -17,7 +17,7 @@ indoc = "1.0"
js_int = { version = "0.2.0", features = ["serde"] } js_int = { version = "0.2.0", features = ["serde"] }
pulldown-cmark = { version = "0.8", default-features = false, optional = true } pulldown-cmark = { version = "0.8", default-features = false, optional = true }
ruma-common = { version = "0.5.1", path = "../ruma-common" } ruma-common = { version = "0.5.1", path = "../ruma-common" }
ruma-events-macros = { version = "=0.22.0", path = "../ruma-events-macros" } ruma-events-macros = { version = "=0.22.1", path = "../ruma-events-macros" }
ruma-identifiers = { version = "0.19.1", path = "../ruma-identifiers", features = ["serde"] } ruma-identifiers = { version = "0.19.1", path = "../ruma-identifiers", features = ["serde"] }
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

@ -18,7 +18,7 @@ version = "0.1.0"
js_int = { version = "0.2.0", features = ["serde"] } js_int = { version = "0.2.0", features = ["serde"] }
ruma-api = { version = "0.17.0", 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.1", path = "../ruma-events" }
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

@ -14,7 +14,7 @@ edition = "2018"
js_int = { version = "0.2.0", features = ["serde"] } js_int = { version = "0.2.0", features = ["serde"] }
ruma-api = { version = "0.17.0", 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.1", path = "../ruma-events" }
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

@ -19,7 +19,7 @@ itertools = "0.10.0"
js_int = "0.2.0" js_int = "0.2.0"
maplit = "1.0.2" maplit = "1.0.2"
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.1", path = "../ruma-events" }
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" }
ruma-signatures = { version = "0.7.1", path = "../ruma-signatures" } ruma-signatures = { version = "0.7.1", path = "../ruma-signatures" }

View File

@ -24,7 +24,7 @@ ruma-identifiers = { version = "0.19.1", path = "../ruma-identifiers", features
ruma-serde = { version = "0.4.0", path = "../ruma-serde" } ruma-serde = { version = "0.4.0", path = "../ruma-serde" }
ruma-client = { version = "0.5.0", path = "../ruma-client", optional = true } ruma-client = { version = "0.5.0", path = "../ruma-client", optional = true }
ruma-events = { version = "0.22.0", path = "../ruma-events", optional = true } ruma-events = { version = "0.22.1", 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 }