Release ruma-common 0.9.2
This commit is contained in:
parent
abf735093c
commit
e1c35b3d7f
@ -21,7 +21,7 @@ server = []
|
||||
|
||||
[dependencies]
|
||||
ruma-client-api = { version = "0.14.0", path = "../ruma-client-api", features = ["client"], optional = true }
|
||||
ruma-common = { version = "0.9.1", path = "../ruma-common", features = ["api", "events"] }
|
||||
ruma-common = { version = "0.9.2", path = "../ruma-common", features = ["api", "events"] }
|
||||
serde = { version = "1.0.118", features = ["derive"] }
|
||||
serde_json = "1.0.61"
|
||||
tracing = { version = "0.1.25", optional = true }
|
||||
|
@ -31,7 +31,7 @@ http = "0.2.2"
|
||||
js_int = { version = "0.2.0", features = ["serde"] }
|
||||
maplit = "1.0.2"
|
||||
percent-encoding = "2.1.0"
|
||||
ruma-common = { version = "0.9.1", path = "../ruma-common", features = ["api", "events"] }
|
||||
ruma-common = { version = "0.9.2", path = "../ruma-common", features = ["api", "events"] }
|
||||
serde = { version = "1.0.118", features = ["derive"] }
|
||||
serde_json = "1.0.61"
|
||||
|
||||
|
@ -42,7 +42,7 @@ 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-client-api = { version = "0.14.0", path = "../ruma-client-api", optional = true, features = ["client"] }
|
||||
ruma-common = { version = "0.9.1", path = "../ruma-common", features = ["api"] }
|
||||
ruma-common = { version = "0.9.2", path = "../ruma-common", features = ["api"] }
|
||||
serde = { version = "1.0.118", features = ["derive"] }
|
||||
serde_json = "1.0.61"
|
||||
tracing = { version = "0.1.30", default-features = false, features = ["std"] }
|
||||
|
@ -1,5 +1,11 @@
|
||||
# [unreleased]
|
||||
|
||||
# 0.9.2
|
||||
|
||||
Bug fixes:
|
||||
|
||||
* Fix serialization and deserialization of events with a dynamic `event_type`
|
||||
|
||||
# 0.9.1
|
||||
|
||||
Improvements:
|
||||
|
@ -1,6 +1,6 @@
|
||||
[package]
|
||||
name = "ruma-common"
|
||||
version = "0.9.1"
|
||||
version = "0.9.2"
|
||||
description = "Common types for other ruma crates."
|
||||
homepage = "https://www.ruma.io/"
|
||||
keywords = ["matrix", "chat", "messaging", "ruma"]
|
||||
@ -60,7 +60,7 @@ percent-encoding = "2.1.0"
|
||||
pulldown-cmark = { version = "0.9.1", default-features = false, optional = true }
|
||||
rand_crate = { package = "rand", version = "0.8.3", optional = true }
|
||||
ruma-identifiers-validation = { version = "0.8.1", path = "../ruma-identifiers-validation", default-features = false }
|
||||
ruma-macros = { version = "0.9.1", path = "../ruma-macros" }
|
||||
ruma-macros = { version = "0.9.2", path = "../ruma-macros" }
|
||||
serde = { version = "1.0.118", features = ["derive"] }
|
||||
serde_json = { version = "1.0.64", features = ["raw_value"] }
|
||||
thiserror = { version = "1.0.26", optional = true }
|
||||
|
@ -25,7 +25,7 @@ server = []
|
||||
|
||||
[dependencies]
|
||||
js_int = { version = "0.2.0", features = ["serde"] }
|
||||
ruma-common = { version = "0.9.1", path = "../ruma-common", features = ["api", "events"] }
|
||||
ruma-common = { version = "0.9.2", path = "../ruma-common", features = ["api", "events"] }
|
||||
serde = { version = "1.0.118", features = ["derive"] }
|
||||
serde_json = "1.0.61"
|
||||
|
||||
|
@ -19,7 +19,7 @@ server = []
|
||||
|
||||
[dependencies]
|
||||
js_int = { version = "0.2.0", features = ["serde"] }
|
||||
ruma-common = { version = "0.9.1", path = "../ruma-common", features = ["api"] }
|
||||
ruma-common = { version = "0.9.2", path = "../ruma-common", features = ["api"] }
|
||||
serde = { version = "1.0.118", features = ["derive"] }
|
||||
|
||||
[dev-dependencies]
|
||||
|
@ -8,7 +8,7 @@ license = "MIT"
|
||||
name = "ruma-macros"
|
||||
readme = "README.md"
|
||||
repository = "https://github.com/ruma/ruma"
|
||||
version = "0.9.1"
|
||||
version = "0.9.2"
|
||||
|
||||
[lib]
|
||||
proc-macro = true
|
||||
|
@ -20,6 +20,6 @@ server = []
|
||||
|
||||
[dependencies]
|
||||
js_int = { version = "0.2.0", features = ["serde"] }
|
||||
ruma-common = { version = "0.9.1", path = "../ruma-common", features = ["api", "events"] }
|
||||
ruma-common = { version = "0.9.2", path = "../ruma-common", features = ["api", "events"] }
|
||||
serde = { version = "1.0.118", features = ["derive"] }
|
||||
serde_json = "1.0.61"
|
||||
|
@ -24,7 +24,7 @@ ed25519-dalek = "1.0.1"
|
||||
pkcs8 = { version = "0.7.0", features = ["alloc"] }
|
||||
# because dalek uses an older version of rand_core
|
||||
rand = { version = "0.7", features = ["getrandom"] }
|
||||
ruma-common = { version = "0.9.1", path = "../ruma-common" }
|
||||
ruma-common = { version = "0.9.2", path = "../ruma-common" }
|
||||
serde_json = "1.0.60"
|
||||
sha2 = "0.9.5"
|
||||
thiserror = "1.0.26"
|
||||
|
@ -20,7 +20,7 @@ unstable-exhaustive-types = []
|
||||
[dependencies]
|
||||
itertools = "0.10.0"
|
||||
js_int = "0.2.0"
|
||||
ruma-common = { version = "0.9.1", path = "../ruma-common", features = ["events"] }
|
||||
ruma-common = { version = "0.9.2", path = "../ruma-common", features = ["events"] }
|
||||
serde = { version = "1.0.118", features = ["derive"] }
|
||||
serde_json = "1.0.60"
|
||||
thiserror = "1.0.26"
|
||||
@ -30,7 +30,7 @@ tracing = "0.1.26"
|
||||
criterion = "0.3.3"
|
||||
maplit = "1.0.2"
|
||||
rand = "0.8.3"
|
||||
ruma-common = { version = "0.9.1", path = "../ruma-common", features = ["unstable-pdu"] }
|
||||
ruma-common = { version = "0.9.2", path = "../ruma-common", features = ["unstable-pdu"] }
|
||||
tracing-subscriber = "0.3.3"
|
||||
|
||||
[[bench]]
|
||||
|
@ -170,7 +170,7 @@ __ci = [
|
||||
assign = "1.1.1"
|
||||
js_int = "0.2.0"
|
||||
|
||||
ruma-common = { version = "0.9.1", path = "../ruma-common" }
|
||||
ruma-common = { version = "0.9.2", path = "../ruma-common" }
|
||||
|
||||
ruma-client = { version = "0.9.0", path = "../ruma-client", optional = true }
|
||||
ruma-signatures = { version = "0.11.0", path = "../ruma-signatures", optional = true }
|
||||
|
Loading…
x
Reference in New Issue
Block a user