Relase ruma-common 0.3.0-alpha.1

This commit is contained in:
Jonas Platte 2021-01-02 14:34:17 +01:00
parent 3c78d35b7a
commit ecfb8a4a4d
No known key found for this signature in database
GPG Key ID: 7D261D771D915378
10 changed files with 13 additions and 11 deletions

View File

@ -13,7 +13,7 @@ edition = "2018"
[dependencies] [dependencies]
ruma-api = { version = "=0.17.0-alpha.1", path = "../ruma-api" } ruma-api = { version = "=0.17.0-alpha.1", path = "../ruma-api" }
ruma-common = { version = "0.2.0", path = "../ruma-common" } ruma-common = { version = "=0.3.0-alpha.1", path = "../ruma-common" }
ruma-events = { version = "=0.22.0-alpha.1", path = "../ruma-events" } ruma-events = { version = "=0.22.0-alpha.1", path = "../ruma-events" }
ruma-identifiers = { version = "=0.18.0-alpha.1", path = "../ruma-identifiers" } ruma-identifiers = { version = "=0.18.0-alpha.1", path = "../ruma-identifiers" }
ruma-serde = { version = "0.3.0", path = "../ruma-serde" } ruma-serde = { version = "0.3.0", path = "../ruma-serde" }

View File

@ -23,7 +23,7 @@ js_int = { version = "0.2.0", features = ["serde"] }
maplit = "1.0.2" maplit = "1.0.2"
percent-encoding = "2.1.0" percent-encoding = "2.1.0"
ruma-api = { version = "=0.17.0-alpha.1", path = "../ruma-api" } ruma-api = { version = "=0.17.0-alpha.1", path = "../ruma-api" }
ruma-common = { version = "0.2.0", path = "../ruma-common" } ruma-common = { version = "=0.3.0-alpha.1", path = "../ruma-common" }
ruma-events = { version = "=0.22.0-alpha.1", path = "../ruma-events" } ruma-events = { version = "=0.22.0-alpha.1", path = "../ruma-events" }
ruma-identifiers = { version = "=0.18.0-alpha.1", path = "../ruma-identifiers" } ruma-identifiers = { version = "=0.18.0-alpha.1", path = "../ruma-identifiers" }
ruma-serde = { version = "0.3.0", path = "../ruma-serde" } ruma-serde = { version = "0.3.0", path = "../ruma-serde" }

View File

@ -25,7 +25,7 @@ hyper-tls = { version = "0.5.0", optional = true }
hyper-rustls = { version = "0.22.1", optional = true, default-features = false } hyper-rustls = { version = "0.22.1", optional = true, default-features = false }
ruma-api = { version = "=0.17.0-alpha.1", path = "../ruma-api" } ruma-api = { version = "=0.17.0-alpha.1", path = "../ruma-api" }
ruma-client-api = { version = "0.10.0-alpha.1", path = "../ruma-client-api" } ruma-client-api = { version = "0.10.0-alpha.1", path = "../ruma-client-api" }
ruma-common = { version = "0.2.0", path = "../ruma-common" } ruma-common = { version = "=0.3.0-alpha.1", path = "../ruma-common" }
ruma-events = { version = "=0.22.0-alpha.1", path = "../ruma-events" } ruma-events = { version = "=0.22.0-alpha.1", path = "../ruma-events" }
ruma-identifiers = { version = "=0.18.0-alpha.1", path = "../ruma-identifiers" } ruma-identifiers = { version = "=0.18.0-alpha.1", path = "../ruma-identifiers" }
ruma-serde = { version = "0.3.0", path = "../ruma-serde" } ruma-serde = { version = "0.3.0", path = "../ruma-serde" }

View File

@ -1,8 +1,10 @@
# [unreleased] # 0.3.0 (unreleased)
Breaking changes: Breaking changes:
* Update strum dependency to 0.19 * Update set of conversion trait implementations for enums
* … (there's a lot more, but this changelog was not kept up to date; PRs to
improve it are welcome)
Improvements: Improvements:

View File

@ -1,6 +1,6 @@
[package] [package]
name = "ruma-common" name = "ruma-common"
version = "0.2.0" version = "0.3.0-alpha.1"
authors = ["Jonas Platte <jplatte@posteo.de>"] authors = ["Jonas Platte <jplatte@posteo.de>"]
description = "Common types for other ruma crates." description = "Common types for other ruma crates."
homepage = "https://www.ruma.io/" homepage = "https://www.ruma.io/"

View File

@ -15,7 +15,7 @@ edition = "2018"
[dependencies] [dependencies]
criterion = { version = "0.3.3", optional = true } criterion = { version = "0.3.3", optional = true }
js_int = { version = "0.2.0", features = ["serde"] } js_int = { version = "0.2.0", features = ["serde"] }
ruma-common = { version = "0.2.0", path = "../ruma-common" } ruma-common = { version = "=0.3.0-alpha.1", path = "../ruma-common" }
ruma-events-macros = { version = "=0.22.0-alpha.1", path = "../ruma-events-macros" } ruma-events-macros = { version = "=0.22.0-alpha.1", path = "../ruma-events-macros" }
ruma-identifiers = { version = "=0.18.0-alpha.1", path = "../ruma-identifiers" } ruma-identifiers = { version = "=0.18.0-alpha.1", path = "../ruma-identifiers" }
ruma-serde = { version = "0.3.0", path = "../ruma-serde" } ruma-serde = { version = "0.3.0", path = "../ruma-serde" }

View File

@ -18,7 +18,7 @@ version = "0.0.3"
[dependencies] [dependencies]
js_int = { version = "0.2.0", features = ["serde"] } js_int = { version = "0.2.0", features = ["serde"] }
ruma-api = { version = "=0.17.0-alpha.1", path = "../ruma-api" } ruma-api = { version = "=0.17.0-alpha.1", path = "../ruma-api" }
ruma-common = { version = "0.2.0", path = "../ruma-common" } ruma-common = { version = "=0.3.0-alpha.1", path = "../ruma-common" }
ruma-events = { version = "=0.22.0-alpha.1", path = "../ruma-events" } ruma-events = { version = "=0.22.0-alpha.1", path = "../ruma-events" }
ruma-identifiers = { version = "=0.18.0-alpha.1", path = "../ruma-identifiers" } ruma-identifiers = { version = "=0.18.0-alpha.1", path = "../ruma-identifiers" }
ruma-serde = { version = "0.3.0", path = "../ruma-serde" } ruma-serde = { version = "0.3.0", path = "../ruma-serde" }

View File

@ -12,7 +12,7 @@ edition = "2018"
[dependencies] [dependencies]
ruma-api = { version = "=0.17.0-alpha.1", path = "../ruma-api" } ruma-api = { version = "=0.17.0-alpha.1", path = "../ruma-api" }
ruma-common = { version = "0.2.0", path = "../ruma-common" } ruma-common = { version = "=0.3.0-alpha.1", path = "../ruma-common" }
ruma-identifiers = { version = "=0.18.0-alpha.1", path = "../ruma-identifiers" } ruma-identifiers = { version = "=0.18.0-alpha.1", path = "../ruma-identifiers" }
ruma-serde = { version = "0.3.0", path = "../ruma-serde" } ruma-serde = { version = "0.3.0", path = "../ruma-serde" }
serde = { version = "1.0.114", features = ["derive"] } serde = { version = "1.0.114", features = ["derive"] }

View File

@ -13,7 +13,7 @@ edition = "2018"
[dependencies] [dependencies]
js_int = { version = "0.2.0", features = ["serde"] } js_int = { version = "0.2.0", features = ["serde"] }
ruma-api = { version = "=0.17.0-alpha.1", path = "../ruma-api" } ruma-api = { version = "=0.17.0-alpha.1", path = "../ruma-api" }
ruma-common = { version = "0.2.0", path = "../ruma-common" } ruma-common = { version = "=0.3.0-alpha.1", path = "../ruma-common" }
ruma-events = { version = "0.22.0-alpha.1", path = "../ruma-events" } ruma-events = { version = "0.22.0-alpha.1", path = "../ruma-events" }
ruma-identifiers = { version = "=0.18.0-alpha.1", path = "../ruma-identifiers" } ruma-identifiers = { version = "=0.18.0-alpha.1", path = "../ruma-identifiers" }
ruma-serde = { version = "0.3.0", path = "../ruma-serde" } ruma-serde = { version = "0.3.0", path = "../ruma-serde" }

View File

@ -16,7 +16,7 @@ edition = "2018"
assign = "1.1.0" assign = "1.1.0"
js_int = "0.2.0" js_int = "0.2.0"
ruma-common = { version = "0.2.0", path = "../ruma-common" } ruma-common = { version = "=0.3.0-alpha.1", path = "../ruma-common" }
ruma-identifiers = { version = "=0.18.0-alpha.1", path = "../ruma-identifiers", features = ["serde"] } ruma-identifiers = { version = "=0.18.0-alpha.1", path = "../ruma-identifiers", features = ["serde"] }
ruma-serde = { version = "0.3.0", path = "../ruma-serde" } ruma-serde = { version = "0.3.0", path = "../ruma-serde" }