From 76994b52cd658a4ac1dc7a08f6bd4eba702e0e87 Mon Sep 17 00:00:00 2001 From: Pierre Krieger Date: Thu, 1 Dec 2022 15:59:41 +0100 Subject: [PATCH] Bump the library versions (#3058) Updated versions will be shortly available on crates.io. --- Cargo.lock | 4 ++-- Cargo.toml | 2 +- bin/full-node/Cargo.toml | 2 +- bin/light-base/Cargo.toml | 4 ++-- bin/wasm-node/rust/Cargo.toml | 4 ++-- 5 files changed, 8 insertions(+), 8 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index fe986d7b33..891df152a6 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -2310,7 +2310,7 @@ checksum = "a507befe795404456341dfab10cef66ead4c041f62b8b11bbb92bffe5d0953e0" [[package]] name = "smoldot" -version = "0.4.0" +version = "0.5.0" dependencies = [ "anyhow", "arrayvec 0.7.2", @@ -2391,7 +2391,7 @@ dependencies = [ [[package]] name = "smoldot-light" -version = "0.2.0" +version = "0.3.0" dependencies = [ "async-std", "blake2-rfc", diff --git a/Cargo.toml b/Cargo.toml index 4498bffa21..0b8da931e5 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "smoldot" -version = "0.4.0" +version = "0.5.0" authors = ["Parity Technologies ", "Pierre Krieger "] description = "Primitives to build a client for Substrate-based blockchains" repository = "https://github.com/paritytech/smoldot" diff --git a/bin/full-node/Cargo.toml b/bin/full-node/Cargo.toml index 11754cbdb9..48f4656c55 100644 --- a/bin/full-node/Cargo.toml +++ b/bin/full-node/Cargo.toml @@ -30,7 +30,7 @@ hashbrown = { version = "0.13.1", default-features = false } hex = { version = "0.4.3", default-features = false } mick-jaeger = "0.1.8" rand = "0.8.5" -smoldot = { version = "0.4.0", path = "../..", default-features = false, features = ["database-sqlite", "std"] } +smoldot = { version = "0.5.0", path = "../..", default-features = false, features = ["database-sqlite", "std"] } terminal_size = "0.2.3" tracing = { version = "0.1.37", features = ["attributes"] } tracing-subscriber = { version = "0.2.25", default-features = false, features = ["ansi", "chrono", "env-filter", "json", "fmt", "parking_lot", "smallvec"] } diff --git a/bin/light-base/Cargo.toml b/bin/light-base/Cargo.toml index 1c51d80099..143c36408e 100644 --- a/bin/light-base/Cargo.toml +++ b/bin/light-base/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "smoldot-light" -version = "0.2.0" +version = "0.3.0" authors = ["Parity Technologies ", "Pierre Krieger "] description = "Browser bindings to a light client for Substrate-based blockchains" repository = "https://github.com/paritytech/smoldot" @@ -27,7 +27,7 @@ rand = "0.8.5" serde = { version = "1.0.148", default-features = false, features = ["alloc", "derive"] } serde_json = "1.0.89" slab = { version = "0.4.7", default-features = false } -smoldot = { version = "0.4.0", path = "../..", default-features = false } +smoldot = { version = "0.5.0", path = "../..", default-features = false } # `std` feature # Add here the crates that cannot function without the help of the operating system or environment. diff --git a/bin/wasm-node/rust/Cargo.toml b/bin/wasm-node/rust/Cargo.toml index 695f3385c7..8221da98da 100644 --- a/bin/wasm-node/rust/Cargo.toml +++ b/bin/wasm-node/rust/Cargo.toml @@ -22,5 +22,5 @@ nom = { version = "7.1.1", default-features = false } pin-project = "1.0.12" rand = "0.8.5" slab = { version = "0.4.7", default-features = false } -smoldot = { version = "0.4.0", path = "../../..", default-features = false } -smoldot-light = { version = "0.2.0", path = "../../light-base", default-features = false } +smoldot = { version = "0.5.0", path = "../../..", default-features = false } +smoldot-light = { version = "0.3.0", path = "../../light-base", default-features = false }