Skip to content

Commit

Permalink
chore: Release 0.22.2 (#1313)
Browse files Browse the repository at this point in the history
* chore: Release 0.22.2

Signed-off-by: Alexandru Vasile <[email protected]>

* Add changelog entry

Signed-off-by: Alexandru Vasile <[email protected]>

* Update CHANGELOG.md

Co-authored-by: Niklas Adolfsson <[email protected]>

* Update CHANGELOG.md

Co-authored-by: Niklas Adolfsson <[email protected]>

* Update CHANGELOG.md

Co-authored-by: Niklas Adolfsson <[email protected]>

* Update CHANGELOG.md

Co-authored-by: Niklas Adolfsson <[email protected]>

---------

Signed-off-by: Alexandru Vasile <[email protected]>
Co-authored-by: Niklas Adolfsson <[email protected]>
  • Loading branch information
lexnv and niklasad1 authored Mar 5, 2024
1 parent d3b1b3a commit 2f16e78
Show file tree
Hide file tree
Showing 2 changed files with 20 additions and 9 deletions.
11 changes: 11 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,17 @@ The format is based on [Keep a Changelog].

[Keep a Changelog]: http://keepachangelog.com/en/1.0.0/

## [v0.22.2] - 2024-03-05

This is a small patch release that exposes the connection details in server method implementations without breaking changes.
We plan to extend this functionality in jsonrpsee v1.0, although this will necessitate a breaking change.

### [Added]
- server: Register raw method with connection ID ([#1297](https://github.com/paritytech/jsonrpsee/pull/1297))

### [Changed]
- Update Syn 1.0 -> 2.0 ([#1304](https://github.com/paritytech/jsonrpsee/pull/1304))

## [v0.22.1] - 2024-02-19

This is a small patch release that internally changes `AtomicU64` to `AtomicUsize`
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.1"
version = "0.22.2"
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.1" }
jsonrpsee-core = { path = "core", version = "0.22.1" }
jsonrpsee-server = { path = "server", version = "0.22.1" }
jsonrpsee-ws-client = { path = "client/ws-client", version = "0.22.1" }
jsonrpsee-http-client = { path = "client/http-client", version = "0.22.1" }
jsonrpsee-wasm-client = { path = "client/wasm-client", version = "0.22.1" }
jsonrpsee-client-transport = { path = "client/transport", version = "0.22.1" }
jsonrpsee-proc-macros = { path = "proc-macros", version = "0.22.1" }
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" }

0 comments on commit 2f16e78

Please sign in to comment.