Skip to content

Commit

Permalink
chore: release v0.22.5
Browse files Browse the repository at this point in the history
  • Loading branch information
niklasad1 committed Apr 29, 2024
1 parent dbbbc77 commit f0b27e2
Show file tree
Hide file tree
Showing 3 changed files with 20 additions and 10 deletions.
10 changes: 10 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,16 @@ The format is based on [Keep a Changelog].

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

## [v0.22.5] - 2024-04-29

A small bug-fix release, see each commit below for further information.

### [Fixed]
- proc macros: collision between generated code name and proc macro API ([#1363](https://github.com/paritytech/jsonrpsee/pull/1363))
- proc-macros: `feature server-core` compiles without `feature server` ([#1360](https://github.com/paritytech/jsonrpsee/pull/1360))
- client: add check in `max_buffer_capacity_per_subscription` that the buffer size > ([#1358](https://github.com/paritytech/jsonrpsee/pull/1358))
- types: Response type ignore unknown fields ([#1353](https://github.com/paritytech/jsonrpsee/pull/1353))

## [v0.22.4] - 2024-04-08

Yet another rather small release that fixes a cancel-safety issue that
Expand Down
18 changes: 9 additions & 9 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ resolver = "2"

[workspace.package]
authors = ["Parity Technologies <admin@parity.io>", "Pierre Krieger <pierre.krieger1708@gmail.com>"]
version = "0.22.4"
version = "0.22.5"
edition = "2021"
rust-version = "1.74.1"
license = "MIT"
Expand All @@ -31,11 +31,11 @@ keywords = ["jsonrpc", "json", "http", "websocket", "WASM"]
readme = "README.md"

[workspace.dependencies]
jsonrpsee-types = { path = "types", version = "0.22.4" }
jsonrpsee-core = { path = "core", version = "0.22.4" }
jsonrpsee-server = { path = "server", version = "0.22.4" }
jsonrpsee-ws-client = { path = "client/ws-client", version = "0.22.4" }
jsonrpsee-http-client = { path = "client/http-client", version = "0.22.4" }
jsonrpsee-wasm-client = { path = "client/wasm-client", version = "0.22.4" }
jsonrpsee-client-transport = { path = "client/transport", version = "0.22.4" }
jsonrpsee-proc-macros = { path = "proc-macros", version = "0.22.4" }
jsonrpsee-types = { path = "types", version = "0.22.5" }
jsonrpsee-core = { path = "core", version = "0.22.5" }
jsonrpsee-server = { path = "server", version = "0.22.5" }
jsonrpsee-ws-client = { path = "client/ws-client", version = "0.22.5" }
jsonrpsee-http-client = { path = "client/http-client", version = "0.22.5" }
jsonrpsee-wasm-client = { path = "client/wasm-client", version = "0.22.5" }
jsonrpsee-client-transport = { path = "client/transport", version = "0.22.5" }
jsonrpsee-proc-macros = { path = "proc-macros", version = "0.22.5" }
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
![MIT](https://img.shields.io/crates/l/jsonrpsee.svg)
[![CI](https://github.com/paritytech/jsonrpsee/actions/workflows/ci.yml/badge.svg)](https://github.com/paritytech/jsonrpsee/actions/workflows/ci.yml)
[![Benchmarks](https://github.com/paritytech/jsonrpsee/actions/workflows/benchmarks_gitlab.yml/badge.svg)](https://github.com/paritytech/jsonrpsee/actions/workflows/benchmarks_gitlab.yml)
[![dependency status](https://deps.rs/crate/jsonrpsee/0.22.4/status.svg)](https://deps.rs/crate/jsonrpsee/0.22.4)
[![dependency status](https://deps.rs/crate/jsonrpsee/0.22.5/status.svg)](https://deps.rs/crate/jsonrpsee/0.22.5)

JSON-RPC library designed for async/await in Rust.

Expand Down

0 comments on commit f0b27e2

Please sign in to comment.