diff --git a/Cargo.lock b/Cargo.lock index 317b136e5a..018213c333 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -2341,7 +2341,7 @@ dependencies = [ [[package]] name = "smoldot-light-wasm" -version = "0.7.4" +version = "0.7.5" dependencies = [ "event-listener", "fnv", diff --git a/bin/wasm-node/CHANGELOG.md b/bin/wasm-node/CHANGELOG.md index e6f4e8ac1c..142e060dd1 100644 --- a/bin/wasm-node/CHANGELOG.md +++ b/bin/wasm-node/CHANGELOG.md @@ -2,9 +2,12 @@ ## Unreleased +## 0.7.5 - 2022-10-31 + ### Fixed - Fix the `state_getKeysPaged` JSON-RPC function returning incorrect results in some situations. ([#2947](https://github.com/paritytech/smoldot/pull/2947)) +- When opening a WebRTC connection, the ufrag and password of SDP requests are now properly set according to the WebRTC libp2p specification. ([#2924](https://github.com/paritytech/smoldot/pull/2924)) ## 0.7.4 - 2022-10-27 @@ -20,10 +23,6 @@ - Fix errors showing in the browser's console about WebSockets being already in the CLOSING or CLOSED state. ([#2925](https://github.com/paritytech/smoldot/pull/2925)) - No longer panic when a WebRTC connection fails to open due to the browser calling callbacks in an unexpected order. ([#2936](https://github.com/paritytech/smoldot/pull/2936)) -### Fixed - -- When opening a WebRTC connection, the ufrag and password of SDP requests are now properly set according to the WebRTC libp2p specification. ([#2924](https://github.com/paritytech/smoldot/pull/2924)) - ## 0.7.3 - 2022-10-19 ### Changed diff --git a/bin/wasm-node/javascript/package-lock.json b/bin/wasm-node/javascript/package-lock.json index cd92155fd9..ba403107f3 100644 --- a/bin/wasm-node/javascript/package-lock.json +++ b/bin/wasm-node/javascript/package-lock.json @@ -1,12 +1,12 @@ { "name": "@substrate/smoldot-light", - "version": "0.7.4", + "version": "0.7.5", "lockfileVersion": 2, "requires": true, "packages": { "": { "name": "@substrate/smoldot-light", - "version": "0.7.4", + "version": "0.7.5", "license": "GPL-3.0-or-later WITH Classpath-exception-2.0", "dependencies": { "pako": "^2.0.4", diff --git a/bin/wasm-node/javascript/package.json b/bin/wasm-node/javascript/package.json index e6b74fd190..c8f8222268 100644 --- a/bin/wasm-node/javascript/package.json +++ b/bin/wasm-node/javascript/package.json @@ -1,6 +1,6 @@ { "name": "@substrate/smoldot-light", - "version": "0.7.4", + "version": "0.7.5", "description": "Light client that connects to Polkadot and Substrate-based blockchains", "author": "Parity Technologies ", "license": "GPL-3.0-or-later WITH Classpath-exception-2.0", diff --git a/bin/wasm-node/rust/Cargo.toml b/bin/wasm-node/rust/Cargo.toml index ea263c15ea..0bfabb1690 100644 --- a/bin/wasm-node/rust/Cargo.toml +++ b/bin/wasm-node/rust/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "smoldot-light-wasm" -version = "0.7.4" +version = "0.7.5" authors = ["Parity Technologies ", "Pierre Krieger "] description = "Browser bindings to a light client for Substrate-based blockchains" repository = "https://github.com/paritytech/smoldot"