Skip to content

chore: release v0.25.1 #1569

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 2 commits into from
Apr 24, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,11 @@ The format is based on [Keep a Changelog].

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

## [v0.25.1] - 2025-04-24

A small follow-up patch release that adds a `Clone impl` for the middleware RpcLogger which was missing
and broke the Clone impl for the HttpClient.

## [v0.25.0] - 2025-04-24

A new breaking release which has been in the making for a while and the biggest change is that the
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 = "3"

[workspace.package]
authors = ["Parity Technologies <[email protected]>", "Pierre Krieger <[email protected]>"]
version = "0.25.0"
version = "0.25.1"
edition = "2024"
rust-version = "1.85.0"
license = "MIT"
Expand All @@ -32,14 +32,14 @@ readme = "README.md"

[workspace.dependencies]
# Internal jsonrpsee crates
jsonrpsee-client-transport = { path = "client/transport", version = "0.25.0" }
jsonrpsee-core = { path = "core", version = "0.25.0" }
jsonrpsee-http-client = { path = "client/http-client", version = "0.25.0" }
jsonrpsee-proc-macros = { path = "proc-macros", version = "0.25.0" }
jsonrpsee-server = { path = "server", version = "0.25.0" }
jsonrpsee-types = { path = "types", version = "0.25.0" }
jsonrpsee-wasm-client = { path = "client/wasm-client", version = "0.25.0" }
jsonrpsee-ws-client = { path = "client/ws-client", version = "0.25.0" }
jsonrpsee-client-transport = { path = "client/transport", version = "0.25.1" }
jsonrpsee-core = { path = "core", version = "0.25.1" }
jsonrpsee-http-client = { path = "client/http-client", version = "0.25.1" }
jsonrpsee-proc-macros = { path = "proc-macros", version = "0.25.1" }
jsonrpsee-server = { path = "server", version = "0.25.1" }
jsonrpsee-types = { path = "types", version = "0.25.1" }
jsonrpsee-wasm-client = { path = "client/wasm-client", version = "0.25.1" }
jsonrpsee-ws-client = { path = "client/ws-client", version = "0.25.1" }

# Deps used by the jsonrpsee crates.
async-trait = "0.1"
Expand Down