Skip to content

Commit 889b38f

Browse files
committed
chore: release v0.20.4
1 parent 854b608 commit 889b38f

File tree

3 files changed

+18
-10
lines changed

3 files changed

+18
-10
lines changed

CHANGELOG.md

+8
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,14 @@ The format is based on [Keep a Changelog].
44

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

7+
## [v0.20.4] - 2024-08-24
8+
9+
This release enables HTTP/2 for http client which is backward compatible and
10+
pure HTTP/1 connections will still work.
11+
12+
### [Changed]
13+
- client: enable http2 for http client ([#1445](https://github.com/paritytech/jsonrpsee/pull/1445))
14+
715
## [v0.20.3] - 2023-10-24
816

917
This release fixes a cancel-safety issue in the server's graceful shutdown which could lead to high CPU usage.

Cargo.toml

+9-9
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ resolver = "2"
1919

2020
[workspace.package]
2121
authors = ["Parity Technologies <[email protected]>", "Pierre Krieger <[email protected]>"]
22-
version = "0.20.3"
22+
version = "0.20.4"
2323
edition = "2021"
2424
rust-version = "1.64.0"
2525
license = "MIT"
@@ -30,11 +30,11 @@ keywords = ["jsonrpc", "json", "http", "websocket", "WASM"]
3030
readme = "README.md"
3131

3232
[workspace.dependencies]
33-
jsonrpsee-types = { path = "types", version = "0.20.3" }
34-
jsonrpsee-core = { path = "core", version = "0.20.3" }
35-
jsonrpsee-server = { path = "server", version = "0.20.3" }
36-
jsonrpsee-ws-client = { path = "client/ws-client", version = "0.20.3" }
37-
jsonrpsee-http-client = { path = "client/http-client", version = "0.20.3" }
38-
jsonrpsee-wasm-client = { path = "client/wasm-client", version = "0.20.3" }
39-
jsonrpsee-client-transport = { path = "client/transport", version = "0.20.3" }
40-
jsonrpsee-proc-macros = { path = "proc-macros", version = "0.20.3" }
33+
jsonrpsee-types = { path = "types", version = "0.20.4" }
34+
jsonrpsee-core = { path = "core", version = "0.20.4" }
35+
jsonrpsee-server = { path = "server", version = "0.20.4" }
36+
jsonrpsee-ws-client = { path = "client/ws-client", version = "0.20.4" }
37+
jsonrpsee-http-client = { path = "client/http-client", version = "0.20.4" }
38+
jsonrpsee-wasm-client = { path = "client/wasm-client", version = "0.20.4" }
39+
jsonrpsee-client-transport = { path = "client/transport", version = "0.20.4" }
40+
jsonrpsee-proc-macros = { path = "proc-macros", version = "0.20.4" }

README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
![MIT](https://img.shields.io/crates/l/jsonrpsee.svg)
77
[![CI](https://github.com/paritytech/jsonrpsee/actions/workflows/ci.yml/badge.svg)](https://github.com/paritytech/jsonrpsee/actions/workflows/ci.yml)
88
[![Benchmarks](https://github.com/paritytech/jsonrpsee/actions/workflows/benchmarks_gitlab.yml/badge.svg)](https://github.com/paritytech/jsonrpsee/actions/workflows/benchmarks_gitlab.yml)
9-
[![dependency status](https://deps.rs/crate/jsonrpsee/0.18.1/status.svg)](https://deps.rs/crate/jsonrpsee/0.20.0)
9+
[![dependency status](https://deps.rs/crate/jsonrpsee/0.20.4/status.svg)](https://deps.rs/crate/jsonrpsee/0.20.4)
1010

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

0 commit comments

Comments
 (0)