diff --git a/Cargo.lock b/Cargo.lock index c2bcae0fafd..bf5b2d3207a 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -3447,7 +3447,7 @@ dependencies = [ [[package]] name = "mithril-aggregator" -version = "0.4.66" +version = "0.5.0" dependencies = [ "anyhow", "async-trait", @@ -3522,7 +3522,7 @@ dependencies = [ [[package]] name = "mithril-client" -version = "0.7.4" +version = "0.8.0" dependencies = [ "anyhow", "async-recursion", @@ -3555,7 +3555,7 @@ dependencies = [ [[package]] name = "mithril-client-cli" -version = "0.7.12" +version = "0.8.0" dependencies = [ "anyhow", "async-trait", @@ -3585,7 +3585,7 @@ dependencies = [ [[package]] name = "mithril-client-wasm" -version = "0.2.6" +version = "0.3.0" dependencies = [ "async-trait", "futures", @@ -3601,7 +3601,7 @@ dependencies = [ [[package]] name = "mithril-common" -version = "0.3.36" +version = "0.4.0" dependencies = [ "anyhow", "async-trait", diff --git a/mithril-aggregator/Cargo.toml b/mithril-aggregator/Cargo.toml index 5160c90d7db..f5de89a5dc4 100644 --- a/mithril-aggregator/Cargo.toml +++ b/mithril-aggregator/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "mithril-aggregator" -version = "0.4.66" +version = "0.5.0" description = "A Mithril Aggregator server" authors = { workspace = true } edition = { workspace = true } diff --git a/mithril-client-cli/Cargo.toml b/mithril-client-cli/Cargo.toml index 6e5f3c021f5..c0cc2090915 100644 --- a/mithril-client-cli/Cargo.toml +++ b/mithril-client-cli/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "mithril-client-cli" -version = "0.7.12" +version = "0.8.0" description = "A Mithril Client" authors = { workspace = true } edition = { workspace = true } diff --git a/mithril-client-wasm/Cargo.toml b/mithril-client-wasm/Cargo.toml index 0e702606081..583c7b6aabb 100644 --- a/mithril-client-wasm/Cargo.toml +++ b/mithril-client-wasm/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "mithril-client-wasm" -version = "0.2.6" +version = "0.3.0" description = "Mithril client WASM" authors = { workspace = true } edition = { workspace = true } diff --git a/mithril-client/Cargo.toml b/mithril-client/Cargo.toml index 142484ca033..2b058549b91 100644 --- a/mithril-client/Cargo.toml +++ b/mithril-client/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "mithril-client" -version = "0.7.4" +version = "0.8.0" description = "Mithril client library" authors = { workspace = true } edition = { workspace = true } @@ -44,19 +44,19 @@ uuid = { version = "1.7.0", features = ["v4"] } zstd = { version = "0.13.0", optional = true } [target.'cfg(not(target_family = "wasm"))'.dependencies] -mithril-common = { path = "../mithril-common", version = "=0.3", features = [ +mithril-common = { path = "../mithril-common", version = "=0.4", features = [ "fs", ] } [target.'cfg(target_family = "wasm")'.dependencies] getrandom = { version = "0.2.12", features = ["js"] } -mithril-common = { path = "../mithril-common", version = "=0.3" } +mithril-common = { path = "../mithril-common", version = "=0.4" } reqwest = { version = "0.12.0", features = ["json", "stream"] } [dev-dependencies] httpmock = "0.7.0" indicatif = { version = "0.17.7", features = ["tokio"] } -mithril-common = { path = "../mithril-common", version = "=0.3", features = [ +mithril-common = { path = "../mithril-common", version = "=0.4", features = [ "random", "test_tools", ] } diff --git a/mithril-common/Cargo.toml b/mithril-common/Cargo.toml index f207ec99c2f..fda56223d82 100644 --- a/mithril-common/Cargo.toml +++ b/mithril-common/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "mithril-common" -version = "0.3.36" +version = "0.4.0" description = "Common types, interfaces, and utilities for Mithril nodes." authors = { workspace = true } edition = { workspace = true }