Release ruma-events 0.25.0
This commit is contained in:
parent
b29755f0c5
commit
90fd1d8f0a
@ -35,5 +35,5 @@ tracing = "0.1.25"
|
|||||||
|
|
||||||
[dev-dependencies]
|
[dev-dependencies]
|
||||||
matches = "0.1.8"
|
matches = "0.1.8"
|
||||||
ruma-events = { version = "0.24.6", path = "../ruma-events" }
|
ruma-events = { version = "0.25.0", path = "../ruma-events" }
|
||||||
trybuild = "1.0.38"
|
trybuild = "1.0.38"
|
||||||
|
@ -23,7 +23,7 @@ server = []
|
|||||||
ruma-api = { version = "0.18.5", path = "../ruma-api" }
|
ruma-api = { version = "0.18.5", path = "../ruma-api" }
|
||||||
ruma-client-api = { version = "0.12.3", path = "../ruma-client-api", features = ["client"], optional = true }
|
ruma-client-api = { version = "0.12.3", path = "../ruma-client-api", features = ["client"], optional = true }
|
||||||
ruma-common = { version = "0.7.0", path = "../ruma-common" }
|
ruma-common = { version = "0.7.0", path = "../ruma-common" }
|
||||||
ruma-events = { version = "0.24.6", path = "../ruma-events" }
|
ruma-events = { version = "0.25.0", path = "../ruma-events" }
|
||||||
ruma-identifiers = { version = "0.21.0", path = "../ruma-identifiers" }
|
ruma-identifiers = { version = "0.21.0", path = "../ruma-identifiers" }
|
||||||
ruma-serde = { version = "0.6.0", path = "../ruma-serde" }
|
ruma-serde = { version = "0.6.0", path = "../ruma-serde" }
|
||||||
serde = { version = "1.0.118", features = ["derive"] }
|
serde = { version = "1.0.118", features = ["derive"] }
|
||||||
|
@ -30,7 +30,7 @@ maplit = "1.0.2"
|
|||||||
percent-encoding = "2.1.0"
|
percent-encoding = "2.1.0"
|
||||||
ruma-api = { version = "0.18.5", path = "../ruma-api" }
|
ruma-api = { version = "0.18.5", path = "../ruma-api" }
|
||||||
ruma-common = { version = "0.7.0", path = "../ruma-common" }
|
ruma-common = { version = "0.7.0", path = "../ruma-common" }
|
||||||
ruma-events = { version = "0.24.6", path = "../ruma-events" }
|
ruma-events = { version = "0.25.0", path = "../ruma-events" }
|
||||||
ruma-identifiers = { version = "0.21.0", path = "../ruma-identifiers" }
|
ruma-identifiers = { version = "0.21.0", path = "../ruma-identifiers" }
|
||||||
ruma-serde = { version = "0.6.0", path = "../ruma-serde" }
|
ruma-serde = { version = "0.6.0", path = "../ruma-serde" }
|
||||||
serde = { version = "1.0.118", features = ["derive"] }
|
serde = { version = "1.0.118", features = ["derive"] }
|
||||||
|
@ -8,7 +8,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.24.6"
|
version = "0.25.0"
|
||||||
|
|
||||||
[lib]
|
[lib]
|
||||||
proc-macro = true
|
proc-macro = true
|
||||||
|
@ -1,5 +1,7 @@
|
|||||||
# [unreleased]
|
# [unreleased]
|
||||||
|
|
||||||
|
# 0.25.0
|
||||||
|
|
||||||
Breaking changes:
|
Breaking changes:
|
||||||
|
|
||||||
* Remove `RedactedStrippedStateEvent`
|
* Remove `RedactedStrippedStateEvent`
|
||||||
|
@ -7,7 +7,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.24.6"
|
version = "0.25.0"
|
||||||
edition = "2018"
|
edition = "2018"
|
||||||
|
|
||||||
[package.metadata.docs.rs]
|
[package.metadata.docs.rs]
|
||||||
@ -32,7 +32,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.7.0", path = "../ruma-common" }
|
ruma-common = { version = "0.7.0", path = "../ruma-common" }
|
||||||
ruma-events-macros = { version = "=0.24.6", path = "../ruma-events-macros" }
|
ruma-events-macros = { version = "=0.25.0", path = "../ruma-events-macros" }
|
||||||
ruma-identifiers = { version = "0.21.0", path = "../ruma-identifiers", features = ["serde"] }
|
ruma-identifiers = { version = "0.21.0", path = "../ruma-identifiers", features = ["serde"] }
|
||||||
ruma-serde = { version = "0.6.0", path = "../ruma-serde" }
|
ruma-serde = { version = "0.6.0", path = "../ruma-serde" }
|
||||||
serde = { version = "1.0.118", features = ["derive"] }
|
serde = { version = "1.0.118", features = ["derive"] }
|
||||||
|
@ -26,7 +26,7 @@ server = []
|
|||||||
js_int = { version = "0.2.0", features = ["serde"] }
|
js_int = { version = "0.2.0", features = ["serde"] }
|
||||||
ruma-api = { version = "0.18.5", path = "../ruma-api" }
|
ruma-api = { version = "0.18.5", path = "../ruma-api" }
|
||||||
ruma-common = { version = "0.7.0", path = "../ruma-common" }
|
ruma-common = { version = "0.7.0", path = "../ruma-common" }
|
||||||
ruma-events = { version = "0.24.6", path = "../ruma-events" }
|
ruma-events = { version = "0.25.0", path = "../ruma-events" }
|
||||||
ruma-identifiers = { version = "0.21.0", path = "../ruma-identifiers" }
|
ruma-identifiers = { version = "0.21.0", path = "../ruma-identifiers" }
|
||||||
ruma-serde = { version = "0.6.0", path = "../ruma-serde" }
|
ruma-serde = { version = "0.6.0", path = "../ruma-serde" }
|
||||||
serde = { version = "1.0.118", features = ["derive"] }
|
serde = { version = "1.0.118", features = ["derive"] }
|
||||||
|
@ -21,7 +21,7 @@ server = []
|
|||||||
js_int = { version = "0.2.0", features = ["serde"] }
|
js_int = { version = "0.2.0", features = ["serde"] }
|
||||||
ruma-api = { version = "0.18.5", path = "../ruma-api" }
|
ruma-api = { version = "0.18.5", path = "../ruma-api" }
|
||||||
ruma-common = { version = "0.7.0", path = "../ruma-common" }
|
ruma-common = { version = "0.7.0", path = "../ruma-common" }
|
||||||
ruma-events = { version = "0.24.6", path = "../ruma-events" }
|
ruma-events = { version = "0.25.0", path = "../ruma-events" }
|
||||||
ruma-identifiers = { version = "0.21.0", path = "../ruma-identifiers" }
|
ruma-identifiers = { version = "0.21.0", path = "../ruma-identifiers" }
|
||||||
ruma-serde = { version = "0.6.0", path = "../ruma-serde" }
|
ruma-serde = { version = "0.6.0", path = "../ruma-serde" }
|
||||||
serde = { version = "1.0.118", features = ["derive"] }
|
serde = { version = "1.0.118", features = ["derive"] }
|
||||||
|
@ -24,7 +24,7 @@ __ci = ["ruma-events/unstable-pre-spec"]
|
|||||||
itertools = "0.10.0"
|
itertools = "0.10.0"
|
||||||
js_int = "0.2.0"
|
js_int = "0.2.0"
|
||||||
ruma-common = { version = "0.7.0", path = "../ruma-common" }
|
ruma-common = { version = "0.7.0", path = "../ruma-common" }
|
||||||
ruma-events = { version = "0.24.6", path = "../ruma-events" }
|
ruma-events = { version = "0.25.0", path = "../ruma-events" }
|
||||||
ruma-identifiers = { version = "0.21.0", path = "../ruma-identifiers" }
|
ruma-identifiers = { version = "0.21.0", path = "../ruma-identifiers" }
|
||||||
ruma-serde = { version = "0.6.0", path = "../ruma-serde" }
|
ruma-serde = { version = "0.6.0", path = "../ruma-serde" }
|
||||||
serde = { version = "1.0.118", features = ["derive"] }
|
serde = { version = "1.0.118", features = ["derive"] }
|
||||||
@ -36,7 +36,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-events = { version = "0.24.5", path = "../ruma-events", features = ["unstable-pdu"] }
|
ruma-events = { version = "0.25.0", path = "../ruma-events", features = ["unstable-pdu"] }
|
||||||
tracing-subscriber = "0.3.3"
|
tracing-subscriber = "0.3.3"
|
||||||
|
|
||||||
[[bench]]
|
[[bench]]
|
||||||
|
@ -146,7 +146,7 @@ ruma-identifiers = { version = "0.21.0", path = "../ruma-identifiers", features
|
|||||||
ruma-serde = { version = "0.6.0", path = "../ruma-serde" }
|
ruma-serde = { version = "0.6.0", path = "../ruma-serde" }
|
||||||
|
|
||||||
ruma-client = { version = "0.7.0", path = "../ruma-client", optional = true }
|
ruma-client = { version = "0.7.0", path = "../ruma-client", optional = true }
|
||||||
ruma-events = { version = "0.24.6", path = "../ruma-events", optional = true }
|
ruma-events = { version = "0.25.0", path = "../ruma-events", optional = true }
|
||||||
ruma-signatures = { version = "0.9.0", path = "../ruma-signatures", optional = true }
|
ruma-signatures = { version = "0.9.0", path = "../ruma-signatures", optional = true }
|
||||||
ruma-state-res = { version = "0.4.1", path = "../ruma-state-res", optional = true }
|
ruma-state-res = { version = "0.4.1", path = "../ruma-state-res", optional = true }
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user