From f0b27e29000a733d891b1062f01d14da8c656383 Mon Sep 17 00:00:00 2001 From: Niklas Adolfsson Date: Mon, 29 Apr 2024 18:01:45 +0200 Subject: [PATCH] chore: release v0.22.5 --- CHANGELOG.md | 10 ++++++++++ Cargo.toml | 18 +++++++++--------- README.md | 2 +- 3 files changed, 20 insertions(+), 10 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 3036daa261..0c1bd000ee 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -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 diff --git a/Cargo.toml b/Cargo.toml index ebbb872657..a9c53ce725 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -20,7 +20,7 @@ resolver = "2" [workspace.package] authors = ["Parity Technologies ", "Pierre Krieger "] -version = "0.22.4" +version = "0.22.5" edition = "2021" rust-version = "1.74.1" license = "MIT" @@ -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" } diff --git a/README.md b/README.md index 07a5188235..c6a0defce7 100644 --- a/README.md +++ b/README.md @@ -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.