Release ruma-identifiers-validation 0.9.0

This commit is contained in:
Jonas Platte 2022-09-12 20:22:17 +02:00
parent e468a45426
commit 5d516ca544
No known key found for this signature in database
GPG Key ID: 7D261D771D915378
4 changed files with 5 additions and 3 deletions

View File

@ -69,7 +69,7 @@ phf = { version = "0.10.1", features = ["macros"], optional = true }
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.8.1", path = "../ruma-identifiers-validation", default-features = false }
ruma-identifiers-validation = { version = "0.9.0", path = "../ruma-identifiers-validation", default-features = false }
ruma-macros = { version = "0.9.2", path = "../ruma-macros" }
serde = { version = "1.0.118", features = ["derive"] }
serde_json = { version = "1.0.64", features = ["raw_value"] }

View File

@ -1,5 +1,7 @@
# [unreleased]
# 0.9.0
Breaking changes:
* Remove `room_name` module

View File

@ -4,7 +4,7 @@ description = "Validation logic for ruma-common and ruma-macros"
homepage = "https://www.ruma.io/"
repository = "https://github.com/ruma/ruma"
license = "MIT"
version = "0.8.1"
version = "0.9.0"
edition = "2021"
rust-version = "1.60"

View File

@ -22,7 +22,7 @@ once_cell = "1.13.0"
proc-macro-crate = "1.0.0"
proc-macro2 = "1.0.24"
quote = "1.0.8"
ruma-identifiers-validation = { version = "0.8.1", path = "../ruma-identifiers-validation", default-features = false }
ruma-identifiers-validation = { version = "0.9.0", path = "../ruma-identifiers-validation", default-features = false }
serde = { version = "1.0.139", features = ["derive"] }
syn = { version = "1.0.57", features = ["extra-traits", "full", "visit"] }
toml = "0.5.9"