Release ruma-identifiers 0.17.0

This commit is contained in:
Jonas Platte 2020-07-22 22:54:58 +02:00
parent 05a99a00a0
commit 080a537664
No known key found for this signature in database
GPG Key ID: 7D261D771D915378
9 changed files with 16 additions and 16 deletions

View File

@ -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-pre.1", path = "../ruma-identifiers" }
ruma-identifiers = { version = "0.17.0", path = "../ruma-identifiers" }
ruma-serde = { version = "0.2.0", path = "../ruma-serde" }
serde = { version = "1.0.113", features = ["derive"] }
serde_json = "1.0.55"

View File

@ -15,6 +15,6 @@ edition = "2018"
ruma-api = { version = "0.16.1", path = "../ruma-api" }
ruma-common = { version = "0.1.3", path = "../ruma-common" }
ruma-events = { version = "0.21.3", path = "../ruma-events" }
ruma-identifiers = { version = "=0.17.0-pre.1", path = "../ruma-identifiers" }
ruma-identifiers = { version = "0.17.0", path = "../ruma-identifiers" }
serde = { version = "1.0.113", features = ["derive"] }
serde_json = "1.0.55"

View File

@ -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.1.3", path = "../ruma-common" }
ruma-events = { version = "0.21.3", path = "../ruma-events" }
ruma-identifiers = { version = "=0.17.0-pre.1", path = "../ruma-identifiers" }
ruma-identifiers = { version = "0.17.0", path = "../ruma-identifiers" }
ruma-serde = { version = "0.2.2", path = "../ruma-serde" }
serde = { version = "1.0.113", features = ["derive"] }
serde_json = "1.0.55"

View File

@ -21,7 +21,7 @@ proc-macro2 = "1.0.18"
proc-macro = true
[dev-dependencies]
ruma-identifiers = { version = "=0.17.0-pre.1", path = "../ruma-identifiers" }
ruma-identifiers = { version = "0.17.0", path = "../ruma-identifiers" }
serde_json = "1.0.55"
js_int = { version = "0.1.7", features = ["serde"] }
serde = { version = "1.0.113", features = ["derive"] }

View File

@ -17,7 +17,7 @@ criterion = { version = "0.3.2", optional = true }
js_int = { version = "0.1.7", features = ["serde"] }
ruma-common = { version = "0.1.3", path = "../ruma-common" }
ruma-events-macros = { version = "=0.21.3", path = "../ruma-events-macros" }
ruma-identifiers = { version = "=0.17.0-pre.1", path = "../ruma-identifiers" }
ruma-identifiers = { version = "0.17.0", 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-pre.1", path = "../ruma-identifiers", features = ["rand"] }
ruma-identifiers = { version = "0.17.0", path = "../ruma-identifiers", features = ["rand"] }
trybuild = "1.0.30"
[[bench]]

View File

@ -20,7 +20,7 @@ js_int = "0.1.7"
ruma-api = { version = "0.16.1", path = "../ruma-api" }
ruma-common = { version = "0.1.3", path = "../ruma-common" }
ruma-events = { version = "0.21.3", path = "../ruma-events" }
ruma-identifiers = { version = "=0.17.0-pre.1", path = "../ruma-identifiers" }
ruma-identifiers = { version = "0.17.0", path = "../ruma-identifiers" }
ruma-serde = { version = "0.2.2", path = "../ruma-serde" }
serde = { version = "1.0.113", features = ["derive"] }
serde_json = "1.0.55"

View File

@ -4,7 +4,9 @@
Breaking changes:
* Remove `RoomVersionId::custom`. It could be used to create invalid room versions (empty or
* Change `RoomVersionId` from being an opaque struct to a non-exhaustive enum
* The constructor functions and `is_` predicates are now deprecated
* Remove `RoomVersionId::custom`. It could be used to create invalid room versions (empty or
exceeding 32 code points in length). Use the `TryFrom<&str>` or `TryFrom<String>` implementation
instead.
* Remove diesel integration. If you were using it, please comment on the corresponding issue:
@ -35,8 +37,6 @@ Breaking changes:
* Change `DeviceId` from being an alias for `String` to being a newtype around `str`
This means owned device IDs are now `Box<DeviceId>`.
* Change `RoomVersionId` from being an opaque struct to a non-exhaustive enum
* The constructor functions and `is_` predicates are now deprecated
Deprecations:

View File

@ -9,7 +9,7 @@ license = "MIT"
name = "ruma-identifiers"
readme = "README.md"
repository = "https://github.com/ruma/ruma-identifiers"
version = "0.17.0-pre.1"
version = "0.17.0"
edition = "2018"
[package.metadata.docs.rs]
@ -22,9 +22,9 @@ default = ["serde"]
[dependencies]
either = { version = "1.5.3", optional = true }
rand = { version = "0.7.3", optional = true }
serde = { version = "1.0.113", optional = true, features = ["derive"] }
serde = { version = "1.0.114", optional = true, features = ["derive"] }
strum = { version = "0.18.0", features = ["derive"] }
[dev-dependencies]
matches = "0.1.8"
serde_json = "1.0.55"
serde_json = "1.0.56"

View File

@ -24,7 +24,7 @@ federation-api = ["ruma-api", "ruma-federation-api", "ruma-signatures"]
[dependencies]
ruma-common = { version = "0.1.3", path = "../ruma-common" }
ruma-identifiers = { version = "=0.17.0-pre.1", path = "../ruma-identifiers", features = ["serde"] }
ruma-identifiers = { version = "0.17.0", path = "../ruma-identifiers", features = ["serde"] }
ruma-events = { version = "0.21.3", path = "../ruma-events", optional = true }
ruma-signatures = { version = "0.6.0-dev.1", path = "../ruma-signatures", optional = true }