Skip to content

Commit e029a20

Browse files
committed
Upgrade crates versions
Note: since the updated minor version of `mithril-common` has not been published yet we had to 'hack' the version required by `mithril-client` in order for our workspace to compile.
1 parent 81edbe3 commit e029a20

File tree

5 files changed

+12
-11
lines changed

5 files changed

+12
-11
lines changed

Cargo.lock

Lines changed: 4 additions & 4 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

mithril-aggregator/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "mithril-aggregator"
3-
version = "0.4.35"
3+
version = "0.4.36"
44
description = "A Mithril Aggregator server"
55
authors = { workspace = true }
66
edition = { workspace = true }

mithril-client/Cargo.toml

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "mithril-client"
3-
version = "0.6.0"
3+
version = "0.6.1"
44
description = "Mithril client library"
55
authors = { workspace = true }
66
edition = { workspace = true }
@@ -44,19 +44,20 @@ uuid = { version = "1.7.0", features = ["v4"] }
4444
zstd = { version = "0.13.0", optional = true }
4545

4646
[target.'cfg(not(target_family = "wasm"))'.dependencies]
47-
mithril-common = { path = "../mithril-common", version = "0.2", features = [
47+
# todo: simplify the version dependency to simply "0.3" after next common publication to crates.io
48+
mithril-common = { path = "../mithril-common", version = ">=0.2, <0.4", features = [
4849
"fs",
4950
] }
5051

5152
[target.'cfg(target_family = "wasm")'.dependencies]
5253
getrandom = { version = "0.2.12", features = ["js"] }
53-
mithril-common = { path = "../mithril-common", version = "0.2" }
54+
mithril-common = { path = "../mithril-common", version = ">=0.2, <0.4" }
5455
reqwest = { version = "0.11.23", features = ["json", "stream"] }
5556

5657
[dev-dependencies]
5758
httpmock = "0.7.0"
5859
indicatif = { version = "0.17.7", features = ["tokio"] }
59-
mithril-common = { path = "../mithril-common", version = "0.2", features = [
60+
mithril-common = { path = "../mithril-common", version = ">=0.2, <0.4", features = [
6061
"random",
6162
"test_tools",
6263
] }

mithril-common/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "mithril-common"
3-
version = "0.2.163"
3+
version = "0.3.0"
44
description = "Common types, interfaces, and utilities for Mithril nodes."
55
authors = { workspace = true }
66
edition = { workspace = true }

mithril-signer/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "mithril-signer"
3-
version = "0.2.106"
3+
version = "0.2.107"
44
description = "A Mithril Signer"
55
authors = { workspace = true }
66
edition = { workspace = true }

0 commit comments

Comments
 (0)