Release ruma-events 0.23.3

This commit is contained in:
Jonas Platte 2021-07-26 15:06:13 +02:00
parent 64fc1c794c
commit 2bd2d18db9
No known key found for this signature in database
GPG Key ID: CC154DE0E30B7C67
10 changed files with 26 additions and 10 deletions

View File

@ -37,5 +37,5 @@ serde_json = "1.0.61"
thiserror = "1.0.23"
[dev-dependencies]
ruma-events = { version = "0.23.2", path = "../ruma-events" }
ruma-events = { version = "0.23.3", path = "../ruma-events" }
trybuild = "1.0.38"

View File

@ -24,7 +24,7 @@ server = []
ruma-api = { version = "0.17.1", path = "../ruma-api" }
ruma-client-api = { version = "0.11.0", path = "../ruma-client-api", features = ["client"], optional = true }
ruma-common = { version = "0.5.4", path = "../ruma-common" }
ruma-events = { version = "0.23.2", path = "../ruma-events" }
ruma-events = { version = "0.23.3", path = "../ruma-events" }
ruma-identifiers = { version = "0.19.4", path = "../ruma-identifiers" }
ruma-serde = { version = "0.4.1", path = "../ruma-serde" }
serde = { version = "1.0.118", features = ["derive"] }

View File

@ -36,7 +36,7 @@ maplit = "1.0.2"
percent-encoding = "2.1.0"
ruma-api = { version = "0.17.1", path = "../ruma-api" }
ruma-common = { version = "0.5.4", path = "../ruma-common" }
ruma-events = { version = "0.23.2", path = "../ruma-events" }
ruma-events = { version = "0.23.3", path = "../ruma-events" }
ruma-identifiers = { version = "0.19.4", path = "../ruma-identifiers" }
ruma-serde = { version = "0.4.1", path = "../ruma-serde" }
serde = { version = "1.0.118", features = ["derive"] }

View File

@ -13,7 +13,7 @@ license = "MIT"
name = "ruma-events-macros"
readme = "README.md"
repository = "https://github.com/ruma/ruma"
version = "0.23.2"
version = "0.23.3"
[lib]
proc-macro = true

View File

@ -1,5 +1,21 @@
# [unreleased]
# 0.23.3
Improvements:
* Add unstable blurhash field to member event content struct
* Add constructors for the unstable spaces parent and child event content types
Bug fixes:
* Remove `new_content` from the plain-text part of `m.encrypted` events
* It is supposed to go into the encrypted payload, but we expected it in the
plain-text part before.
* This is technically a breaking change but since that can only be observed
behind an unstable feature and this change doesn't break matrix-sdk, it's
made in a point release.
# 0.23.2
Bug fixes:

View File

@ -8,7 +8,7 @@ license = "MIT"
name = "ruma-events"
readme = "README.md"
repository = "https://github.com/ruma/ruma"
version = "0.23.2"
version = "0.23.3"
edition = "2018"
[package.metadata.docs.rs]
@ -28,7 +28,7 @@ indoc = "1.0"
js_int = { version = "0.2.0", features = ["serde"] }
pulldown-cmark = { version = "0.8", default-features = false, optional = true }
ruma-common = { version = "0.5.4", path = "../ruma-common" }
ruma-events-macros = { version = "=0.23.2", path = "../ruma-events-macros" }
ruma-events-macros = { version = "=0.23.3", path = "../ruma-events-macros" }
ruma-identifiers = { version = "0.19.4", path = "../ruma-identifiers", features = ["serde"] }
ruma-serde = { version = "0.4.1", path = "../ruma-serde" }
serde = { version = "1.0.118", features = ["derive"] }

View File

@ -28,7 +28,7 @@ server = []
js_int = { version = "0.2.0", features = ["serde"] }
ruma-api = { version = "0.17.1", path = "../ruma-api" }
ruma-common = { version = "0.5.4", path = "../ruma-common" }
ruma-events = { version = "0.23.2", path = "../ruma-events" }
ruma-events = { version = "0.23.3", path = "../ruma-events" }
ruma-identifiers = { version = "0.19.4", path = "../ruma-identifiers" }
ruma-serde = { version = "0.4.1", path = "../ruma-serde" }
serde = { version = "1.0.118", features = ["derive"] }

View File

@ -22,7 +22,7 @@ server = []
js_int = { version = "0.2.0", features = ["serde"] }
ruma-api = { version = "0.17.1", path = "../ruma-api" }
ruma-common = { version = "0.5.4", path = "../ruma-common" }
ruma-events = { version = "0.23.2", path = "../ruma-events" }
ruma-events = { version = "0.23.3", path = "../ruma-events" }
ruma-identifiers = { version = "0.19.4", path = "../ruma-identifiers" }
ruma-serde = { version = "0.4.1", path = "../ruma-serde" }
serde = { version = "1.0.118", features = ["derive"] }

View File

@ -23,7 +23,7 @@ itertools = "0.10.0"
js_int = "0.2.0"
maplit = "1.0.2"
ruma-common = { version = "0.5.4", path = "../ruma-common" }
ruma-events = { version = "0.23.2", path = "../ruma-events" }
ruma-events = { version = "0.23.3", path = "../ruma-events" }
ruma-identifiers = { version = "0.19.4", path = "../ruma-identifiers" }
ruma-serde = { version = "0.4.1", path = "../ruma-serde" }
serde = { version = "1.0.118", features = ["derive"] }

View File

@ -124,7 +124,7 @@ ruma-identifiers = { version = "0.19.4", path = "../ruma-identifiers", features
ruma-serde = { version = "0.4.1", path = "../ruma-serde" }
ruma-client = { version = "0.6.0", path = "../ruma-client", optional = true }
ruma-events = { version = "0.23.2", path = "../ruma-events", optional = true }
ruma-events = { version = "0.23.3", path = "../ruma-events", optional = true }
ruma-signatures = { version = "0.8.0", path = "../ruma-signatures", optional = true }
ruma-state-res = { version = "0.2.0", path = "../ruma-state-res", optional = true }