Release ruma-identifiers-validation 0.6.0

This commit is contained in:
Jonas Platte 2022-02-19 01:06:17 +01:00
parent 38881dd6af
commit 62c55d90ed
No known key found for this signature in database
GPG Key ID: 7D261D771D915378
4 changed files with 13 additions and 3 deletions

View File

@ -13,5 +13,5 @@ proc-macro = true
[dependencies] [dependencies]
quote = "1.0.8" quote = "1.0.8"
ruma-identifiers-validation = { version = "0.5.0", path = "../ruma-identifiers-validation", default-features = false } ruma-identifiers-validation = { version = "0.6.0", path = "../ruma-identifiers-validation", default-features = false }
syn = "1.0.55" syn = "1.0.55"

View File

@ -1,5 +1,15 @@
# [unreleased] # [unreleased]
# 0.6.0
Breaking changes:
* Most validation functions no longer return the colon position on success
Improvements:
* Add `mxc_uri` validation
# 0.5.0 # 0.5.0
Breaking changes: Breaking changes:

View File

@ -4,7 +4,7 @@ description = "Validation logic for ruma-identifiers and ruma-identifiers-macros
homepage = "https://www.ruma.io/" homepage = "https://www.ruma.io/"
repository = "https://github.com/ruma/ruma" repository = "https://github.com/ruma/ruma"
license = "MIT" license = "MIT"
version = "0.5.0" version = "0.6.0"
edition = "2018" edition = "2018"
[package.metadata.docs.rs] [package.metadata.docs.rs]

View File

@ -25,7 +25,7 @@ either = { version = "1.6.1", optional = true }
percent-encoding = "2.1.0" percent-encoding = "2.1.0"
rand_crate = { package = "rand", version = "0.8.3", optional = true } rand_crate = { package = "rand", version = "0.8.3", optional = true }
ruma-identifiers-macros = { version = "=0.20.0", path = "../ruma-identifiers-macros" } ruma-identifiers-macros = { version = "=0.20.0", path = "../ruma-identifiers-macros" }
ruma-identifiers-validation = { version = "0.5.0", path = "../ruma-identifiers-validation", default-features = false } ruma-identifiers-validation = { version = "0.6.0", path = "../ruma-identifiers-validation", default-features = false }
ruma-serde = { version = "0.6.0", path = "../ruma-serde", optional = true } ruma-serde = { version = "0.6.0", path = "../ruma-serde", optional = true }
ruma-serde-macros = { version = "0.6.0", path = "../ruma-serde-macros" } ruma-serde-macros = { version = "0.6.0", path = "../ruma-serde-macros" }
# Renamed so we can have a serde feature. # Renamed so we can have a serde feature.