Skip to content

Commit

Permalink
Bump the library versions (#3058)
Browse files Browse the repository at this point in the history
Updated versions will be shortly available on crates.io.
  • Loading branch information
tomaka committed Dec 1, 2022
1 parent bc4ec47 commit 76994b5
Show file tree
Hide file tree
Showing 5 changed files with 8 additions and 8 deletions.
4 changes: 2 additions & 2 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "smoldot"
version = "0.4.0"
version = "0.5.0"
authors = ["Parity Technologies <admin@parity.io>", "Pierre Krieger <pierre.krieger1708@gmail.com>"]
description = "Primitives to build a client for Substrate-based blockchains"
repository = "https://github.com/paritytech/smoldot"
Expand Down
2 changes: 1 addition & 1 deletion bin/full-node/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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"] }
4 changes: 2 additions & 2 deletions bin/light-base/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "smoldot-light"
version = "0.2.0"
version = "0.3.0"
authors = ["Parity Technologies <admin@parity.io>", "Pierre Krieger <pierre.krieger1708@gmail.com>"]
description = "Browser bindings to a light client for Substrate-based blockchains"
repository = "https://github.com/paritytech/smoldot"
Expand All @@ -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.
Expand Down
4 changes: 2 additions & 2 deletions bin/wasm-node/rust/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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 }

0 comments on commit 76994b5

Please sign in to comment.