Skip to content

Commit

Permalink
chore: release v0.22.3
Browse files Browse the repository at this point in the history
  • Loading branch information
niklasad1 committed Mar 20, 2024
1 parent e62f69d commit 8c73cc6
Show file tree
Hide file tree
Showing 2 changed files with 23 additions and 9 deletions.
14 changes: 14 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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.
Expand Down
18 changes: 9 additions & 9 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ resolver = "2"

[workspace.package]
authors = ["Parity Technologies <[email protected]>", "Pierre Krieger <[email protected]>"]
version = "0.22.2"
version = "0.22.3"
edition = "2021"
rust-version = "1.64.0"
license = "MIT"
Expand All @@ -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" }

0 comments on commit 8c73cc6

Please sign in to comment.