diff --git a/CHANGELOG.md b/CHANGELOG.md index 73ea4b07fb..78768e43e9 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,6 +4,20 @@ The format is based on [Keep a Changelog]. [Keep a Changelog]: http://keepachangelog.com/en/1.0.0/ +## [v0.22.3] - 2024-03-20 + +Another small release that adds a new API for RpcModule if one already has the state in an `Arc` +and a couple of bug fixes. + +### [Added] +- add `RpcModule::from_arc` ([#1324](https://github.com/paritytech/jsonrpsee/pull/1324)) + +### [Fixed] +- Revert "fix(server): return err on WS handshake err (#1288)" ([#1326](https://github.com/paritytech/jsonrpsee/pull/1326)) +- export `AlreadyStoppedError` ([#1325](https://github.com/paritytech/jsonrpsee/pull/1325)) + +Thanks to the external contributors [@mattsse](https://github.com/mattsse) and [@aatifsyed](https://github.com/mattsse) who contributed to this release. + ## [v0.22.2] - 2024-03-05 This is a small patch release that exposes the connection details in server method implementations without breaking changes. diff --git a/Cargo.toml b/Cargo.toml index cc38169e46..14e7f33e18 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -19,7 +19,7 @@ resolver = "2" [workspace.package] authors = ["Parity Technologies ", "Pierre Krieger "] -version = "0.22.2" +version = "0.22.3" edition = "2021" rust-version = "1.64.0" license = "MIT" @@ -30,11 +30,11 @@ keywords = ["jsonrpc", "json", "http", "websocket", "WASM"] readme = "README.md" [workspace.dependencies] -jsonrpsee-types = { path = "types", version = "0.22.2" } -jsonrpsee-core = { path = "core", version = "0.22.2" } -jsonrpsee-server = { path = "server", version = "0.22.2" } -jsonrpsee-ws-client = { path = "client/ws-client", version = "0.22.2" } -jsonrpsee-http-client = { path = "client/http-client", version = "0.22.2" } -jsonrpsee-wasm-client = { path = "client/wasm-client", version = "0.22.2" } -jsonrpsee-client-transport = { path = "client/transport", version = "0.22.2" } -jsonrpsee-proc-macros = { path = "proc-macros", version = "0.22.2" } +jsonrpsee-types = { path = "types", version = "0.22.3" } +jsonrpsee-core = { path = "core", version = "0.22.3" } +jsonrpsee-server = { path = "server", version = "0.22.3" } +jsonrpsee-ws-client = { path = "client/ws-client", version = "0.22.3" } +jsonrpsee-http-client = { path = "client/http-client", version = "0.22.3" } +jsonrpsee-wasm-client = { path = "client/wasm-client", version = "0.22.3" } +jsonrpsee-client-transport = { path = "client/transport", version = "0.22.3" } +jsonrpsee-proc-macros = { path = "proc-macros", version = "0.22.3" }