From 6c2de381c4fe9d0d527aba1142a82f51de01a261 Mon Sep 17 00:00:00 2001 From: Niklas Adolfsson Date: Wed, 14 Aug 2024 16:45:03 +0200 Subject: [PATCH] chore: release v0.24.3 (#1442) * chore: release v0.24.3 * Update CHANGELOG.md * Update CHANGELOG.md --- CHANGELOG.md | 8 ++++++++ Cargo.toml | 18 +++++++++--------- README.md | 2 +- 3 files changed, 18 insertions(+), 10 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index d224b10292..4fb3ca9091 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,6 +4,14 @@ The format is based on [Keep a Changelog]. [Keep a Changelog]: http://keepachangelog.com/en/1.0.0/ +## [v0.24.3] - 2024-08-14 + +This is a small release that adds two new APIs to inject data via the extensions to the `RpcModule/Methods` +and it only impacts users that are using RpcModule directly via `Methods::call/subscribe/raw_json_request` (e.g., unit testing) and not the server itself. + +### [Added] +- feat(server): add `Methods::extensions/extensions_mut` ([#1440](https://github.com/paritytech/jsonrpsee/pull/1440)) + ## [v0.24.2] - 2024-08-02 Another small release that fixes: diff --git a/Cargo.toml b/Cargo.toml index 2a47917bf9..0b08f4ac81 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -20,7 +20,7 @@ resolver = "2" [workspace.package] authors = ["Parity Technologies ", "Pierre Krieger "] -version = "0.24.2" +version = "0.24.3" 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.24.2" } -jsonrpsee-core = { path = "core", version = "0.24.2" } -jsonrpsee-server = { path = "server", version = "0.24.2" } -jsonrpsee-ws-client = { path = "client/ws-client", version = "0.24.2" } -jsonrpsee-http-client = { path = "client/http-client", version = "0.24.2" } -jsonrpsee-wasm-client = { path = "client/wasm-client", version = "0.24.2" } -jsonrpsee-client-transport = { path = "client/transport", version = "0.24.2" } -jsonrpsee-proc-macros = { path = "proc-macros", version = "0.24.2" } +jsonrpsee-types = { path = "types", version = "0.24.3" } +jsonrpsee-core = { path = "core", version = "0.24.3" } +jsonrpsee-server = { path = "server", version = "0.24.3" } +jsonrpsee-ws-client = { path = "client/ws-client", version = "0.24.3" } +jsonrpsee-http-client = { path = "client/http-client", version = "0.24.3" } +jsonrpsee-wasm-client = { path = "client/wasm-client", version = "0.24.3" } +jsonrpsee-client-transport = { path = "client/transport", version = "0.24.3" } +jsonrpsee-proc-macros = { path = "proc-macros", version = "0.24.3" } diff --git a/README.md b/README.md index 1e8e0c1332..3e231c32a9 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.24.1/status.svg)](https://deps.rs/crate/jsonrpsee/0.24.1) +[![dependency status](https://deps.rs/crate/jsonrpsee/0.24.3/status.svg)](https://deps.rs/crate/jsonrpsee/0.24.3) JSON-RPC library designed for async/await in Rust.