Release ruma-identifiers-validation 0.9.2

This commit is contained in:
Jonas Platte 2023-09-27 18:25:45 +02:00
parent 10f651916f
commit 33f7df8bf2
No known key found for this signature in database
GPG key ID: AAA7A61F696C3E0C
3 changed files with 6 additions and 2 deletions

View file

@ -23,7 +23,7 @@ ruma-client-api = { version = "0.16.2", path = "crates/ruma-client-api" }
ruma-events = { version = "0.26.0", path = "crates/ruma-events" }
ruma-federation-api = { version = "0.7.1", path = "crates/ruma-federation-api" }
ruma-html = { version = "0.1.0", path = "crates/ruma-html" }
ruma-identifiers-validation = { version = "0.9.1", path = "crates/ruma-identifiers-validation" }
ruma-identifiers-validation = { version = "0.9.2", path = "crates/ruma-identifiers-validation" }
ruma-identity-service-api = { version = "0.7.1", path = "crates/ruma-identity-service-api" }
ruma-macros = { version = "=0.11.3", path = "crates/ruma-macros" }
ruma-push-gateway-api = { version = "0.7.1", path = "crates/ruma-push-gateway-api" }

View file

@ -1,5 +1,7 @@
# [unreleased]
# 0.9.2
Bug fixes:
- Don't consider empty localpart of a user ID as valid
@ -9,6 +11,8 @@ Bug fixes:
Improvements:
- Allow `+` in the localpart of user IDs according to MSC4009 / Matrix 1.8
- Add `compat-arbitrary-length-ids` Cargo feature for opting out of 255-byte
length check for all ID types
# 0.9.1

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.9.1"
version = "0.9.2"
edition = "2021"
rust-version = { workspace = true }