Skip to content

Commit

Permalink
Publish v2.0.18 and new versions on crates.io (#1606)
Browse files Browse the repository at this point in the history
  • Loading branch information
tomaka authored Jan 24, 2024
1 parent 6b62f40 commit 0b1a855
Show file tree
Hide file tree
Showing 8 changed files with 17 additions and 15 deletions.
8 changes: 4 additions & 4 deletions Cargo.lock

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

4 changes: 2 additions & 2 deletions full-node/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "smoldot-full-node"
version = "0.7.0"
version = "0.8.0"
description = "Substrate/Polkadot full node using smoldot"
authors.workspace = true
license.workspace = true
Expand Down Expand Up @@ -37,6 +37,6 @@ serde_json = { version = "1.0.104", default-features = false, features = ["std"]
siphasher = { version = "1.0.0", default-features = false }
soketto = { version = "0.7.1", features = ["deflate"] }
smol = "2.0.0"
smoldot = { version = "0.16.0", path = "../lib", default-features = false, features = ["database-sqlite", "std", "wasmtime"] }
smoldot = { version = "0.17.0", path = "../lib", default-features = false, features = ["database-sqlite", "std", "wasmtime"] }
terminal_size = "0.3.0"
zeroize = { version = "1.6.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.16.0"
version = "0.17.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.14.0"
version = "0.15.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.0", default-features = false }
slab = { version = "0.4.8", default-features = false }
smoldot = { version = "0.16.0", path = "../lib", default-features = false }
smoldot = { version = "0.17.0", path = "../lib", default-features = false }
zeroize = { version = "1.6.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.18 - 2024-01-24

### Changed

- The `transaction_unstable_submitAndWatch` and `transaction_unstable_unwatch` JSON-RPC functions have been renamed to respectively `transactionWatch_unstable_submitAndWatch` and `transactionWatch_unstable_unwatch`, and the corresponding event has been renamed from `transaction_unstable_watchEvent` to `transactionWatch_unstable_watchEvent`, in accordance with the latest changes in the JSON-RPC API specification. ([#1604](https://github.com/smol-dot/smoldot/pull/1604))
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.17",
"version": "2.0.18",
"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.17"
version = "2.0.18"
description = "Browser bindings to a light client for Substrate-based blockchains"
authors.workspace = true
license.workspace = true
Expand Down Expand Up @@ -30,5 +30,5 @@ nom = { version = "7.1.3", default-features = false }
no-std-net = { version = "0.6.0", default-features = false }
pin-project = "1.1.3"
slab = { version = "0.4.8", default-features = false }
smoldot = { version = "0.16.0", path = "../../lib", default-features = false }
smoldot-light = { version = "0.14.0", path = "../../light-base", default-features = false }
smoldot = { version = "0.17.0", path = "../../lib", default-features = false }
smoldot-light = { version = "0.15.0", path = "../../light-base", default-features = false }

0 comments on commit 0b1a855

Please sign in to comment.