Release ruma-identifiers 0.17.2

This commit is contained in:
Jonas Platte 2020-08-07 18:35:01 +02:00
parent 5153279eba
commit f470afcb2a
No known key found for this signature in database
GPG Key ID: 7D261D771D915378
3 changed files with 11 additions and 3 deletions

View File

@ -6,7 +6,7 @@ keywords = ["matrix", "chat", "messaging", "ruma"]
license = "MIT"
name = "ruma-identifiers-macros"
repository = "https://github.com/ruma/ruma"
version = "0.17.1"
version = "0.17.2"
edition = "2018"
[dependencies]

View File

@ -1,5 +1,13 @@
# [unreleased]
# 0.17.2
Bug fixes:
* Fix `RoomVersionId::is_version_6` actually checking for version 5
* Fix `TryFrom` implementations for `RoomVersionId`, which previously returned
`RoomVersionId::Custom` for the input `6`
# 0.17.1
Improvements:

View File

@ -12,7 +12,7 @@ license = "MIT"
name = "ruma-identifiers"
readme = "README.md"
repository = "https://github.com/ruma/ruma"
version = "0.17.1"
version = "0.17.2"
edition = "2018"
[package.metadata.docs.rs]
@ -25,7 +25,7 @@ default = ["serde"]
[dependencies]
either = { version = "1.5.3", optional = true }
rand = { version = "0.7.3", optional = true }
ruma-identifiers-macros = { version = "=0.17.1", path = "../ruma-identifiers-macros" }
ruma-identifiers-macros = { version = "=0.17.2", path = "../ruma-identifiers-macros" }
ruma-identifiers-validation = { version = "0.1.0", path = "../ruma-identifiers-validation" }
serde = { version = "1.0.114", optional = true, features = ["derive"] }
strum = { version = "0.18.0", features = ["derive"] }