Release ruma-signatures 0.9.0

This commit is contained in:
Jonas Platte 2021-08-11 17:30:28 +02:00
parent 7602570e21
commit dbc0c40ec9
No known key found for this signature in database
GPG Key ID: CC154DE0E30B7C67
3 changed files with 14 additions and 2 deletions

View File

@ -1,5 +1,17 @@
# [unreleased]
# 0.9.0
Breaking changes:
* Change a few functions to return `Result`s
* See each function's documentation for how it can fail
Bug fixes:
* Don't check stringified JSON size <= 65535 bytes for verify_json and sign_json
since these functions may be used for things other than PDUs
# 0.8.0
Breaking changes:

View File

@ -9,7 +9,7 @@ license = "MIT"
name = "ruma-signatures"
readme = "README.md"
repository = "https://github.com/ruma/ruma"
version = "0.8.0"
version = "0.9.0"
[package.metadata.docs.rs]
all-features = true

View File

@ -125,7 +125,7 @@ ruma-serde = { version = "0.5.0", path = "../ruma-serde" }
ruma-client = { version = "0.6.0", path = "../ruma-client", 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-signatures = { version = "0.9.0", path = "../ruma-signatures", optional = true }
ruma-state-res = { version = "0.2.0", path = "../ruma-state-res", optional = true }
ruma-api = { version = "0.17.2", path = "../ruma-api", optional = true }