Release ruma-identifiers 0.17.1
This commit is contained in:
parent
82b7cc1637
commit
c363494905
@ -19,7 +19,7 @@ edition = "2018"
|
||||
http = "0.2.1"
|
||||
percent-encoding = "2.1.0"
|
||||
ruma-api-macros = { version = "=0.16.1", path = "../ruma-api-macros" }
|
||||
ruma-identifiers = { version = "0.17.0", path = "../ruma-identifiers" }
|
||||
ruma-identifiers = { version = "0.17.1", path = "../ruma-identifiers" }
|
||||
ruma-serde = { version = "0.2.0", path = "../ruma-serde" }
|
||||
serde = { version = "1.0.113", features = ["derive"] }
|
||||
serde_json = "1.0.55"
|
||||
|
@ -15,6 +15,6 @@ edition = "2018"
|
||||
ruma-api = { version = "0.16.1", path = "../ruma-api" }
|
||||
ruma-common = { version = "0.2.0", path = "../ruma-common" }
|
||||
ruma-events = { version = "0.21.3", path = "../ruma-events" }
|
||||
ruma-identifiers = { version = "0.17.0", path = "../ruma-identifiers" }
|
||||
ruma-identifiers = { version = "0.17.1", path = "../ruma-identifiers" }
|
||||
serde = { version = "1.0.113", features = ["derive"] }
|
||||
serde_json = "1.0.55"
|
||||
|
@ -22,7 +22,7 @@ js_int = { version = "0.1.7", features = ["serde"] }
|
||||
ruma-api = { version = "0.16.1", path = "../ruma-api" }
|
||||
ruma-common = { version = "0.2.0", path = "../ruma-common" }
|
||||
ruma-events = { version = "0.21.3", path = "../ruma-events" }
|
||||
ruma-identifiers = { version = "0.17.0", path = "../ruma-identifiers" }
|
||||
ruma-identifiers = { version = "0.17.1", path = "../ruma-identifiers" }
|
||||
ruma-serde = { version = "0.2.2", path = "../ruma-serde" }
|
||||
serde = { version = "1.0.113", features = ["derive"] }
|
||||
serde_json = "1.0.55"
|
||||
|
@ -21,7 +21,7 @@ proc-macro2 = "1.0.18"
|
||||
proc-macro = true
|
||||
|
||||
[dev-dependencies]
|
||||
ruma-identifiers = { version = "0.17.0", path = "../ruma-identifiers" }
|
||||
ruma-identifiers = { version = "0.17.1", path = "../ruma-identifiers" }
|
||||
serde_json = "1.0.55"
|
||||
js_int = { version = "0.1.7", features = ["serde"] }
|
||||
serde = { version = "1.0.113", features = ["derive"] }
|
||||
|
@ -17,7 +17,7 @@ criterion = { version = "0.3.2", optional = true }
|
||||
js_int = { version = "0.1.7", features = ["serde"] }
|
||||
ruma-common = { version = "0.2.0", path = "../ruma-common" }
|
||||
ruma-events-macros = { version = "=0.21.3", path = "../ruma-events-macros" }
|
||||
ruma-identifiers = { version = "0.17.0", path = "../ruma-identifiers" }
|
||||
ruma-identifiers = { version = "0.17.1", path = "../ruma-identifiers" }
|
||||
ruma-serde = { version = "0.2.2", path = "../ruma-serde" }
|
||||
serde = { version = "1.0.113", features = ["derive"] }
|
||||
serde_json = { version = "1.0.55", features = ["raw_value"] }
|
||||
@ -26,7 +26,7 @@ strum = { version = "0.18.0", features = ["derive"] }
|
||||
[dev-dependencies]
|
||||
maplit = "1.0.2"
|
||||
matches = "0.1.8"
|
||||
ruma-identifiers = { version = "0.17.0", path = "../ruma-identifiers", features = ["rand"] }
|
||||
ruma-identifiers = { version = "0.17.1", path = "../ruma-identifiers", features = ["rand"] }
|
||||
trybuild = "1.0.30"
|
||||
|
||||
[[bench]]
|
||||
|
@ -20,7 +20,7 @@ js_int = "0.1.7"
|
||||
ruma-api = { version = "0.16.1", path = "../ruma-api" }
|
||||
ruma-common = { version = "0.2.0", path = "../ruma-common" }
|
||||
ruma-events = { version = "0.21.3", path = "../ruma-events" }
|
||||
ruma-identifiers = { version = "0.17.0", path = "../ruma-identifiers" }
|
||||
ruma-identifiers = { version = "0.17.1", path = "../ruma-identifiers" }
|
||||
ruma-serde = { version = "0.2.2", path = "../ruma-serde" }
|
||||
serde = { version = "1.0.113", features = ["derive"] }
|
||||
serde_json = "1.0.55"
|
||||
|
@ -6,11 +6,11 @@ keywords = ["matrix", "chat", "messaging", "ruma"]
|
||||
license = "MIT"
|
||||
name = "ruma-identifiers-macros"
|
||||
repository = "https://github.com/ruma/ruma"
|
||||
version = "0.17.0"
|
||||
version = "0.17.1"
|
||||
edition = "2018"
|
||||
|
||||
[dependencies]
|
||||
ruma-identifiers = "=0.17.0"
|
||||
ruma-identifiers = { version = "=0.17.1", path = "../ruma-identifiers" }
|
||||
quote = "1.0.7"
|
||||
proc-macro2 = "1.0.19"
|
||||
syn = "1.0.35"
|
||||
|
@ -1,5 +1,11 @@
|
||||
# [unreleased]
|
||||
|
||||
# 0.17.1
|
||||
|
||||
Improvements:
|
||||
|
||||
* Add `.as_bytes()` to all identifier types that already had `.as_str()`
|
||||
|
||||
# 0.17.0
|
||||
|
||||
Breaking changes:
|
||||
|
@ -9,7 +9,7 @@ license = "MIT"
|
||||
name = "ruma-identifiers"
|
||||
readme = "README.md"
|
||||
repository = "https://github.com/ruma/ruma-identifiers"
|
||||
version = "0.17.0"
|
||||
version = "0.17.1"
|
||||
edition = "2018"
|
||||
|
||||
[package.metadata.docs.rs]
|
||||
|
@ -24,8 +24,8 @@ federation-api = ["ruma-api", "ruma-federation-api", "ruma-signatures"]
|
||||
|
||||
[dependencies]
|
||||
ruma-common = { version = "0.2.0", path = "../ruma-common" }
|
||||
ruma-identifiers = { version = "0.17.0", path = "../ruma-identifiers", features = ["serde"] }
|
||||
ruma-identifiers-macros = { version = "0.17.0", path = "../ruma-identifiers-macros" }
|
||||
ruma-identifiers = { version = "0.17.1", path = "../ruma-identifiers", features = ["serde"] }
|
||||
ruma-identifiers-macros = { version = "0.17.1", path = "../ruma-identifiers-macros" }
|
||||
|
||||
ruma-events = { version = "0.21.3", path = "../ruma-events", optional = true }
|
||||
ruma-signatures = { version = "0.6.0-dev.1", path = "../ruma-signatures", optional = true }
|
||||
|
Loading…
x
Reference in New Issue
Block a user