diff --git a/Cargo.lock b/Cargo.lock index 59bf432686..42b88e6651 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -2371,7 +2371,7 @@ dependencies = [ [[package]] name = "smoldot-light" -version = "0.16.0" +version = "0.16.1" dependencies = [ "async-channel", "async-lock", @@ -2406,7 +2406,7 @@ dependencies = [ [[package]] name = "smoldot-light-wasm" -version = "2.0.27" +version = "2.0.28" dependencies = [ "async-lock", "async-task", diff --git a/light-base/Cargo.toml b/light-base/Cargo.toml index 433559b3bf..98380287a4 100644 --- a/light-base/Cargo.toml +++ b/light-base/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "smoldot-light" -version = "0.16.0" +version = "0.16.1" description = "Browser bindings to a light client for Substrate-based blockchains" authors.workspace = true license.workspace = true diff --git a/wasm-node/CHANGELOG.md b/wasm-node/CHANGELOG.md index ef78b58f03..1e193bda25 100644 --- a/wasm-node/CHANGELOG.md +++ b/wasm-node/CHANGELOG.md @@ -2,6 +2,8 @@ ## Unreleased +## 2.0.28 - 2024-05-30 + ### Changed - For parachains, the `system_peers` legacy JSON-RPC function now always returns the best block that each peer gave in its initial block announce handshake. In the past, smoldot tried to track the best block of each peer through its block announce handshakes. This has been removed in order to simplify the code. In practice, however, parachain peers always announce blocks that are not their best block, and this tracking didn't have any effect. ([#1855](https://github.com/smol-dot/smoldot/pull/1855)) diff --git a/wasm-node/javascript/package-lock.json b/wasm-node/javascript/package-lock.json index 50918b4ce9..35ef99cacb 100644 --- a/wasm-node/javascript/package-lock.json +++ b/wasm-node/javascript/package-lock.json @@ -1,12 +1,12 @@ { "name": "smoldot", - "version": "2.0.27", + "version": "2.0.28", "lockfileVersion": 3, "requires": true, "packages": { "": { "name": "smoldot", - "version": "2.0.27", + "version": "2.0.28", "license": "GPL-3.0-or-later WITH Classpath-exception-2.0", "dependencies": { "ws": "^8.8.1" diff --git a/wasm-node/javascript/package.json b/wasm-node/javascript/package.json index 2133884765..c86b9e1649 100644 --- a/wasm-node/javascript/package.json +++ b/wasm-node/javascript/package.json @@ -1,6 +1,6 @@ { "name": "smoldot", - "version": "2.0.27", + "version": "2.0.28", "description": "Light client that connects to Polkadot and Substrate-based blockchains", "contributors": [ "Parity Technologies ", diff --git a/wasm-node/rust/Cargo.toml b/wasm-node/rust/Cargo.toml index 349ce01ee9..4223948ce1 100644 --- a/wasm-node/rust/Cargo.toml +++ b/wasm-node/rust/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "smoldot-light-wasm" -version = "2.0.27" +version = "2.0.28" description = "Browser bindings to a light client for Substrate-based blockchains" authors.workspace = true license.workspace = true