Release ruma-common 0.9.1
This commit is contained in:
parent
16abba2af2
commit
a36da216ec
@ -21,7 +21,7 @@ server = []
|
|||||||
|
|
||||||
[dependencies]
|
[dependencies]
|
||||||
ruma-client-api = { version = "0.14.0", path = "../ruma-client-api", features = ["client"], optional = true }
|
ruma-client-api = { version = "0.14.0", path = "../ruma-client-api", features = ["client"], optional = true }
|
||||||
ruma-common = { version = "0.9.0", path = "../ruma-common", features = ["api", "events"] }
|
ruma-common = { version = "0.9.1", path = "../ruma-common", features = ["api", "events"] }
|
||||||
serde = { version = "1.0.118", features = ["derive"] }
|
serde = { version = "1.0.118", features = ["derive"] }
|
||||||
serde_json = "1.0.61"
|
serde_json = "1.0.61"
|
||||||
tracing = { version = "0.1.25", optional = true }
|
tracing = { version = "0.1.25", optional = true }
|
||||||
|
@ -31,7 +31,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-common = { version = "0.9.0", path = "../ruma-common", features = ["api", "events"] }
|
ruma-common = { version = "0.9.1", path = "../ruma-common", features = ["api", "events"] }
|
||||||
serde = { version = "1.0.118", features = ["derive"] }
|
serde = { version = "1.0.118", features = ["derive"] }
|
||||||
serde_json = "1.0.61"
|
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 }
|
isahc-crate = { package = "isahc", version = "1.3.1", optional = true }
|
||||||
reqwest = { version = "0.11.4", optional = true, default-features = false }
|
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-client-api = { version = "0.14.0", path = "../ruma-client-api", optional = true, features = ["client"] }
|
||||||
ruma-common = { version = "0.9.0", path = "../ruma-common", features = ["api"] }
|
ruma-common = { version = "0.9.1", path = "../ruma-common", features = ["api"] }
|
||||||
serde = { version = "1.0.118", features = ["derive"] }
|
serde = { version = "1.0.118", features = ["derive"] }
|
||||||
serde_json = "1.0.61"
|
serde_json = "1.0.61"
|
||||||
tracing = { version = "0.1.30", default-features = false, features = ["std"] }
|
tracing = { version = "0.1.30", default-features = false, features = ["std"] }
|
||||||
|
@ -1,5 +1,15 @@
|
|||||||
# [unreleased]
|
# [unreleased]
|
||||||
|
|
||||||
|
# 0.9.1
|
||||||
|
|
||||||
|
Improvements:
|
||||||
|
|
||||||
|
* Add `StrippedPowerLevelsEvent::power_levels`
|
||||||
|
* Add (`Sync`)`RoomMemberEvent::membership`
|
||||||
|
* Export `events::room::member::Change`
|
||||||
|
* Prior to this, you couldn't actually do anything with the
|
||||||
|
`membership_change` functions on various member event types
|
||||||
|
|
||||||
# 0.9.0
|
# 0.9.0
|
||||||
|
|
||||||
Bug fixes:
|
Bug fixes:
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
[package]
|
[package]
|
||||||
name = "ruma-common"
|
name = "ruma-common"
|
||||||
version = "0.9.0"
|
version = "0.9.1"
|
||||||
description = "Common types for other ruma crates."
|
description = "Common types for other ruma crates."
|
||||||
homepage = "https://www.ruma.io/"
|
homepage = "https://www.ruma.io/"
|
||||||
keywords = ["matrix", "chat", "messaging", "ruma"]
|
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 }
|
pulldown-cmark = { version = "0.9.1", default-features = false, optional = true }
|
||||||
rand_crate = { package = "rand", version = "0.8.3", 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-identifiers-validation = { version = "0.8.1", path = "../ruma-identifiers-validation", default-features = false }
|
||||||
ruma-macros = { version = "=0.9.0", path = "../ruma-macros" }
|
ruma-macros = { version = "0.9.1", path = "../ruma-macros" }
|
||||||
serde = { version = "1.0.118", features = ["derive"] }
|
serde = { version = "1.0.118", features = ["derive"] }
|
||||||
serde_json = { version = "1.0.64", features = ["raw_value"] }
|
serde_json = { version = "1.0.64", features = ["raw_value"] }
|
||||||
thiserror = { version = "1.0.26", optional = true }
|
thiserror = { version = "1.0.26", optional = true }
|
||||||
|
@ -25,7 +25,7 @@ server = []
|
|||||||
|
|
||||||
[dependencies]
|
[dependencies]
|
||||||
js_int = { version = "0.2.0", features = ["serde"] }
|
js_int = { version = "0.2.0", features = ["serde"] }
|
||||||
ruma-common = { version = "0.9.0", path = "../ruma-common", features = ["api", "events"] }
|
ruma-common = { version = "0.9.1", path = "../ruma-common", features = ["api", "events"] }
|
||||||
serde = { version = "1.0.118", features = ["derive"] }
|
serde = { version = "1.0.118", features = ["derive"] }
|
||||||
serde_json = "1.0.61"
|
serde_json = "1.0.61"
|
||||||
|
|
||||||
|
@ -19,7 +19,7 @@ server = []
|
|||||||
|
|
||||||
[dependencies]
|
[dependencies]
|
||||||
js_int = { version = "0.2.0", features = ["serde"] }
|
js_int = { version = "0.2.0", features = ["serde"] }
|
||||||
ruma-common = { version = "0.9.0", path = "../ruma-common", features = ["api"] }
|
ruma-common = { version = "0.9.1", path = "../ruma-common", features = ["api"] }
|
||||||
serde = { version = "1.0.118", features = ["derive"] }
|
serde = { version = "1.0.118", features = ["derive"] }
|
||||||
|
|
||||||
[dev-dependencies]
|
[dev-dependencies]
|
||||||
|
@ -8,7 +8,7 @@ license = "MIT"
|
|||||||
name = "ruma-macros"
|
name = "ruma-macros"
|
||||||
readme = "README.md"
|
readme = "README.md"
|
||||||
repository = "https://github.com/ruma/ruma"
|
repository = "https://github.com/ruma/ruma"
|
||||||
version = "0.9.0"
|
version = "0.9.1"
|
||||||
|
|
||||||
[lib]
|
[lib]
|
||||||
proc-macro = true
|
proc-macro = true
|
||||||
|
@ -20,6 +20,6 @@ server = []
|
|||||||
|
|
||||||
[dependencies]
|
[dependencies]
|
||||||
js_int = { version = "0.2.0", features = ["serde"] }
|
js_int = { version = "0.2.0", features = ["serde"] }
|
||||||
ruma-common = { version = "0.9.0", path = "../ruma-common", features = ["api", "events"] }
|
ruma-common = { version = "0.9.1", path = "../ruma-common", features = ["api", "events"] }
|
||||||
serde = { version = "1.0.118", features = ["derive"] }
|
serde = { version = "1.0.118", features = ["derive"] }
|
||||||
serde_json = "1.0.61"
|
serde_json = "1.0.61"
|
||||||
|
@ -24,7 +24,7 @@ ed25519-dalek = "1.0.1"
|
|||||||
pkcs8 = { version = "0.7.0", features = ["alloc"] }
|
pkcs8 = { version = "0.7.0", features = ["alloc"] }
|
||||||
# because dalek uses an older version of rand_core
|
# because dalek uses an older version of rand_core
|
||||||
rand = { version = "0.7", features = ["getrandom"] }
|
rand = { version = "0.7", features = ["getrandom"] }
|
||||||
ruma-common = { version = "0.9.0", path = "../ruma-common" }
|
ruma-common = { version = "0.9.1", path = "../ruma-common" }
|
||||||
serde_json = "1.0.60"
|
serde_json = "1.0.60"
|
||||||
sha2 = "0.9.5"
|
sha2 = "0.9.5"
|
||||||
thiserror = "1.0.26"
|
thiserror = "1.0.26"
|
||||||
|
@ -20,7 +20,7 @@ unstable-exhaustive-types = []
|
|||||||
[dependencies]
|
[dependencies]
|
||||||
itertools = "0.10.0"
|
itertools = "0.10.0"
|
||||||
js_int = "0.2.0"
|
js_int = "0.2.0"
|
||||||
ruma-common = { version = "0.9.0", path = "../ruma-common", features = ["events"] }
|
ruma-common = { version = "0.9.1", path = "../ruma-common", features = ["events"] }
|
||||||
serde = { version = "1.0.118", features = ["derive"] }
|
serde = { version = "1.0.118", features = ["derive"] }
|
||||||
serde_json = "1.0.60"
|
serde_json = "1.0.60"
|
||||||
thiserror = "1.0.26"
|
thiserror = "1.0.26"
|
||||||
@ -30,7 +30,7 @@ tracing = "0.1.26"
|
|||||||
criterion = "0.3.3"
|
criterion = "0.3.3"
|
||||||
maplit = "1.0.2"
|
maplit = "1.0.2"
|
||||||
rand = "0.8.3"
|
rand = "0.8.3"
|
||||||
ruma-common = { version = "0.9.0", path = "../ruma-common", features = ["unstable-pdu"] }
|
ruma-common = { version = "0.9.1", path = "../ruma-common", features = ["unstable-pdu"] }
|
||||||
tracing-subscriber = "0.3.3"
|
tracing-subscriber = "0.3.3"
|
||||||
|
|
||||||
[[bench]]
|
[[bench]]
|
||||||
|
@ -170,7 +170,7 @@ __ci = [
|
|||||||
assign = "1.1.1"
|
assign = "1.1.1"
|
||||||
js_int = "0.2.0"
|
js_int = "0.2.0"
|
||||||
|
|
||||||
ruma-common = { version = "0.9.0", path = "../ruma-common" }
|
ruma-common = { version = "0.9.1", path = "../ruma-common" }
|
||||||
|
|
||||||
ruma-client = { version = "0.9.0", path = "../ruma-client", optional = true }
|
ruma-client = { version = "0.9.0", path = "../ruma-client", optional = true }
|
||||||
ruma-signatures = { version = "0.11.0", path = "../ruma-signatures", optional = true }
|
ruma-signatures = { version = "0.11.0", path = "../ruma-signatures", optional = true }
|
||||||
|
Loading…
x
Reference in New Issue
Block a user