Release ruma-signatures 0.7.1

This commit is contained in:
Jonas Platte 2021-05-16 22:55:03 +02:00
parent ecf875358c
commit 48cf21e37c
No known key found for this signature in database
GPG Key ID: 7D261D771D915378
4 changed files with 8 additions and 3 deletions

View File

@ -1,6 +1,11 @@
# [unreleased] # [unreleased]
# 0.7.1
Improvements:
* Fix verify_json signature check algorithm * Fix verify_json signature check algorithm
* Bump dependency versions
# 0.7.0 # 0.7.0

View File

@ -9,7 +9,7 @@ license = "MIT"
name = "ruma-signatures" name = "ruma-signatures"
readme = "README.md" readme = "README.md"
repository = "https://github.com/ruma/ruma" repository = "https://github.com/ruma/ruma"
version = "0.7.0" version = "0.7.1"
[dependencies] [dependencies]
base64 = "0.13.0" base64 = "0.13.0"

View File

@ -22,7 +22,7 @@ ruma-common = { version = "0.5.0", path = "../ruma-common" }
ruma-events = { version = "=0.22.0-alpha.3", path = "../ruma-events" } ruma-events = { version = "=0.22.0-alpha.3", path = "../ruma-events" }
ruma-identifiers = { version = "0.19.1", path = "../ruma-identifiers" } ruma-identifiers = { version = "0.19.1", path = "../ruma-identifiers" }
ruma-serde = { version = "0.4.0", path = "../ruma-serde" } ruma-serde = { version = "0.4.0", path = "../ruma-serde" }
ruma-signatures = { version = "0.7.0", path = "../ruma-signatures" } ruma-signatures = { version = "0.7.1", path = "../ruma-signatures" }
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.22" thiserror = "1.0.22"

View File

@ -25,7 +25,7 @@ ruma-serde = { version = "0.4.0", path = "../ruma-serde" }
ruma-client = { version = "=0.5.0-alpha.2", path = "../ruma-client", optional = true } ruma-client = { version = "=0.5.0-alpha.2", path = "../ruma-client", optional = true }
ruma-events = { version = "=0.22.0-alpha.3", path = "../ruma-events", optional = true } ruma-events = { version = "=0.22.0-alpha.3", path = "../ruma-events", optional = true }
ruma-signatures = { version = "0.7.0", path = "../ruma-signatures", optional = true } ruma-signatures = { version = "0.7.1", path = "../ruma-signatures", optional = true }
ruma-state-res = { version = "0.1.0", path = "../ruma-state-res", optional = true } ruma-state-res = { version = "0.1.0", path = "../ruma-state-res", optional = true }
ruma-api = { version = "=0.17.0-alpha.4", path = "../ruma-api", optional = true } ruma-api = { version = "=0.17.0-alpha.4", path = "../ruma-api", optional = true }