Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Publish v2.0.31, plus new crates.io versions #2030

Merged
merged 3 commits into from
Nov 8, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 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 full-node/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -37,6 +37,6 @@ serde_json = { version = "1.0.104", default-features = false, features = ["std"]
siphasher = { version = "1.0.1", default-features = false }
soketto = { version = "0.8.0", features = ["deflate"] }
smol = "2.0.0"
smoldot = { version = "0.18.0", path = "../lib", default-features = false, features = ["database-sqlite", "std", "wasmtime"] }
smoldot = { version = "0.19.0", path = "../lib", default-features = false, features = ["database-sqlite", "std", "wasmtime"] }
terminal_size = "0.4.0"
zeroize = { version = "1.7.0", default-features = false, features = ["alloc"] }
2 changes: 1 addition & 1 deletion lib/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "smoldot"
version = "0.18.0"
version = "0.19.0"
description = "Primitives to build a client for Substrate-based blockchains"
documentation = "https://docs.rs/smoldot"
keywords = ["blockchain", "peer-to-peer"]
Expand Down
4 changes: 2 additions & 2 deletions light-base/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "smoldot-light"
version = "0.16.2"
version = "0.17.0"
description = "Browser bindings to a light client for Substrate-based blockchains"
authors.workspace = true
license.workspace = true
Expand Down Expand Up @@ -36,7 +36,7 @@ serde = { version = "1.0.183", default-features = false, features = ["alloc", "d
serde_json = { version = "1.0.104", default-features = false, features = ["alloc"] }
siphasher = { version = "1.0.1", default-features = false }
slab = { version = "0.4.8", default-features = false }
smoldot = { version = "0.18.0", path = "../lib", default-features = false }
smoldot = { version = "0.19.0", path = "../lib", default-features = false }
zeroize = { version = "1.7.0", default-features = false, features = ["alloc"] }

# `std` feature
Expand Down
2 changes: 2 additions & 0 deletions wasm-node/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,8 @@

## Unreleased

## 2.0.31 - 2024-11-08

### Fixed

- Fix panic in transactions service when the runtime service resets after having lost track of the head of the chain. ([#2029](https://github.com/smol-dot/smoldot/pull/2029))
Expand Down
4 changes: 2 additions & 2 deletions wasm-node/javascript/package-lock.json

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

2 changes: 1 addition & 1 deletion wasm-node/javascript/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "smoldot",
"version": "2.0.30",
"version": "2.0.31",
"description": "Light client that connects to Polkadot and Substrate-based blockchains",
"contributors": [
"Parity Technologies <[email protected]>",
Expand Down
6 changes: 3 additions & 3 deletions wasm-node/rust/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "smoldot-light-wasm"
version = "2.0.30"
version = "2.0.31"
description = "Browser bindings to a light client for Substrate-based blockchains"
authors.workspace = true
license.workspace = true
Expand Down Expand Up @@ -29,5 +29,5 @@ hashbrown = { version = "0.15.0", default-features = false }
nom = { version = "7.1.3", default-features = false }
pin-project = "1.1.5"
slab = { version = "0.4.8", default-features = false }
smoldot = { version = "0.18.0", path = "../../lib", default-features = false }
smoldot-light = { version = "0.16.0", path = "../../light-base", default-features = false }
smoldot = { version = "0.19.0", path = "../../lib", default-features = false }
smoldot-light = { version = "0.17.0", path = "../../light-base", default-features = false }
Loading