Release ruma-state-res 0.7.0

This commit is contained in:
Jonas Platte 2022-04-28 17:56:00 +02:00
parent 94545fd52c
commit 4f9e8f0ae5
No known key found for this signature in database
GPG Key ID: BBA95679259D342F
3 changed files with 5 additions and 3 deletions

View File

@ -1,10 +1,12 @@
# [unreleased] # [unreleased]
# 0.7.0
Breaking changes: Breaking changes:
* `auth_check` does not require `prev_event` parameter. It was only required on * `auth_check` does not require `prev_event` parameter. It was only required on
some specific cases. Previous event is now calculated on demand only when some specific cases. Previous event is now calculated on demand only when
it's required. it's required.
# 0.6.0 # 0.6.0

View File

@ -7,7 +7,7 @@ homepage = "https://www.ruma.io/"
repository = "https://github.com/ruma/ruma" repository = "https://github.com/ruma/ruma"
readme = "README.md" readme = "README.md"
license = "MIT" license = "MIT"
version = "0.6.0" version = "0.7.0"
edition = "2018" edition = "2018"
[package.metadata.docs.rs] [package.metadata.docs.rs]

View File

@ -171,7 +171,7 @@ ruma-common = { version = "0.9.0", path = "../ruma-common" }
ruma-client = { version = "0.9.0", path = "../ruma-client", optional = true } ruma-client = { version = "0.9.0", path = "../ruma-client", optional = true }
ruma-signatures = { version = "0.11.0", path = "../ruma-signatures", optional = true } ruma-signatures = { version = "0.11.0", path = "../ruma-signatures", optional = true }
ruma-state-res = { version = "0.6.0", path = "../ruma-state-res", optional = true } ruma-state-res = { version = "0.7.0", path = "../ruma-state-res", optional = true }
ruma-appservice-api = { version = "0.6.0", path = "../ruma-appservice-api", optional = true } ruma-appservice-api = { version = "0.6.0", path = "../ruma-appservice-api", optional = true }
ruma-client-api = { version = "0.14.0", path = "../ruma-client-api", optional = true } ruma-client-api = { version = "0.14.0", path = "../ruma-client-api", optional = true }