Release ruma-common 0.10.5

This commit is contained in:
Jonas Platte 2022-10-18 09:09:59 +02:00
parent c8dacdbbab
commit 67b2ec7d34
No known key found for this signature in database
GPG Key ID: AAA7A61F696C3E0C
13 changed files with 20 additions and 14 deletions

View File

@ -20,7 +20,7 @@ client = []
server = []
[dependencies]
ruma-common = { version = "0.10.4", path = "../ruma-common", features = ["api", "events"] }
ruma-common = { version = "0.10.5", path = "../ruma-common", features = ["api", "events"] }
serde = { version = "1.0.118", features = ["derive"] }
serde_json = "1.0.61"

View File

@ -40,7 +40,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.10.4", path = "../ruma-common", features = ["api", "events"] }
ruma-common = { version = "0.10.5", path = "../ruma-common", features = ["api", "events"] }
serde = { version = "1.0.118", features = ["derive"] }
serde_json = "1.0.61"

View File

@ -45,7 +45,7 @@ hyper-tls = { version = "0.5.0", optional = true }
isahc = { version = "1.3.1", optional = true }
reqwest = { version = "0.11.4", optional = true, default-features = false }
ruma-client-api = { version = "0.15.2", path = "../ruma-client-api", optional = true, features = ["client"] }
ruma-common = { version = "0.10.4", path = "../ruma-common", features = ["api"] }
ruma-common = { version = "0.10.5", 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"] }

View File

@ -1,5 +1,11 @@
# [unreleased]
# 0.10.5
Improvements:
* Add support for `#[incoming_derive(!Debug)]` to the `Incoming` derive macro
# 0.10.4
Bug fixes:

View File

@ -1,6 +1,6 @@
[package]
name = "ruma-common"
version = "0.10.4"
version = "0.10.5"
description = "Common types for other ruma crates."
homepage = "https://www.ruma.io/"
keywords = ["matrix", "chat", "messaging", "ruma"]
@ -70,7 +70,7 @@ pulldown-cmark = { version = "0.9.1", default-features = false, optional = true
rand_crate = { package = "rand", version = "0.8.3", optional = true }
regex = { version = "1.5.6", default-features = false, features = ["std", "perf"] }
ruma-identifiers-validation = { version = "0.9.0", path = "../ruma-identifiers-validation", default-features = false }
ruma-macros = { version = "0.10.4", path = "../ruma-macros" }
ruma-macros = { version = "0.10.5", 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 }

View File

@ -27,7 +27,7 @@ unstable-msc3723 = []
[dependencies]
js_int = { version = "0.2.0", features = ["serde"] }
ruma-common = { version = "0.10.4", path = "../ruma-common", features = ["api", "events"] }
ruma-common = { version = "0.10.5", path = "../ruma-common", features = ["api", "events"] }
serde = { version = "1.0.118", features = ["derive"] }
serde_json = "1.0.61"

View File

@ -20,7 +20,7 @@ server = []
[dependencies]
js_int = { version = "0.2.0", features = ["serde"] }
ruma-common = { version = "0.10.4", path = "../ruma-common", features = ["api"] }
ruma-common = { version = "0.10.5", path = "../ruma-common", features = ["api"] }
serde = { version = "1.0.118", features = ["derive"] }
[dev-dependencies]

View File

@ -7,7 +7,7 @@ license = "MIT"
name = "ruma-macros"
readme = "README.md"
repository = "https://github.com/ruma/ruma"
version = "0.10.4"
version = "0.10.5"
edition = "2021"
rust-version = "1.60"

View File

@ -21,6 +21,6 @@ server = []
[dependencies]
js_int = { version = "0.2.0", features = ["serde"] }
ruma-common = { version = "0.10.4", path = "../ruma-common", features = ["api", "events"] }
ruma-common = { version = "0.10.5", path = "../ruma-common", features = ["api", "events"] }
serde = { version = "1.0.118", features = ["derive"] }
serde_json = "1.0.61"

View File

@ -17,7 +17,7 @@ rustdoc-args = ["--cfg", "docsrs"]
[dependencies]
headers = "0.3"
ruma-common = { version = "0.10.4", path = "../ruma-common" }
ruma-common = { version = "0.10.5", path = "../ruma-common" }
tracing = "0.1.25"
yap = "0.7.2"

View File

@ -23,7 +23,7 @@ ed25519-dalek = "1.0.1"
pkcs8 = { version = "0.9.0", features = ["alloc"] }
# because dalek uses an older version of rand_core
rand = { version = "0.7", features = ["getrandom"] }
ruma-common = { version = "0.10.4", path = "../ruma-common", features = ["canonical-json"] }
ruma-common = { version = "0.10.5", path = "../ruma-common", features = ["canonical-json"] }
serde_json = "1.0.60"
sha2 = "0.9.5"
subslice = { version = "0.2.3", optional = true }

View File

@ -20,7 +20,7 @@ unstable-exhaustive-types = []
[dependencies]
itertools = "0.10.0"
js_int = "0.2.0"
ruma-common = { version = "0.10.4", path = "../ruma-common", features = ["events"] }
ruma-common = { version = "0.10.5", path = "../ruma-common", features = ["events"] }
serde = { version = "1.0.118", features = ["derive"] }
serde_json = "1.0.60"
thiserror = "1.0.26"
@ -32,7 +32,7 @@ criterion = { version = "0.3.3", optional = true }
[dev-dependencies]
maplit = "1.0.2"
rand = "0.8.3"
ruma-common = { version = "0.10.4", path = "../ruma-common", features = ["unstable-pdu"] }
ruma-common = { version = "0.10.5", path = "../ruma-common", features = ["unstable-pdu"] }
tracing-subscriber = "0.3.3"
[[bench]]

View File

@ -207,7 +207,7 @@ assign = "1.1.1"
js_int = "0.2.0"
js_option = "0.1.1"
ruma-common = { version = "0.10.4", path = "../ruma-common" }
ruma-common = { version = "0.10.5", path = "../ruma-common" }
ruma-client = { version = "0.10.0", path = "../ruma-client", optional = true }
ruma-signatures = { version = "0.12.0", path = "../ruma-signatures", optional = true }