Release ruma-identifiers-validation 0.8.1

This commit is contained in:
Jonas Platte 2022-04-28 15:47:56 +02:00
parent 242085cf37
commit 70ea38b138
No known key found for this signature in database
GPG Key ID: BBA95679259D342F
4 changed files with 11 additions and 4 deletions

View File

@ -59,7 +59,7 @@ js_option = "0.1.0"
percent-encoding = "2.1.0"
pulldown-cmark = { version = "0.9.1", default-features = false, optional = true }
rand_crate = { package = "rand", version = "0.8.3", optional = true }
ruma-identifiers-validation = { version = "0.8.0", path = "../ruma-identifiers-validation", default-features = false }
ruma-identifiers-validation = { version = "0.8.1", path = "../ruma-identifiers-validation", default-features = false }
ruma-macros = { version = "=0.1.0", path = "../ruma-macros" }
serde = { version = "1.0.118", features = ["derive"] }
serde_json = { version = "1.0.64", features = ["raw_value"] }

View File

@ -1,5 +1,13 @@
# [unreleased]
# 0.8.1
Improvements:
* Remove unused dependency on `url`
# 0.8.0
Breaking changes:
* Rework the `Error` type (merge / rename variants)

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.0"
version = "0.8.1"
edition = "2018"
[package.metadata.docs.rs]
@ -15,4 +15,3 @@ compat = []
[dependencies]
thiserror = "1.0.26"
url = "2.2.2"

View File

@ -20,5 +20,5 @@ compat = []
proc-macro-crate = "1.0.0"
proc-macro2 = "1.0.24"
quote = "1.0.8"
ruma-identifiers-validation = { version = "0.8.0", path = "../ruma-identifiers-validation", default-features = false }
ruma-identifiers-validation = { version = "0.8.1", path = "../ruma-identifiers-validation", default-features = false }
syn = { version = "1.0.57", features = ["extra-traits", "full", "visit"] }