Skip to content

Commit

Permalink
chore: release v0.20.4
Browse files Browse the repository at this point in the history
  • Loading branch information
niklasad1 committed Aug 24, 2024
1 parent 854b608 commit 889b38f
Show file tree
Hide file tree
Showing 3 changed files with 18 additions and 10 deletions.
8 changes: 8 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,14 @@ The format is based on [Keep a Changelog].

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

## [v0.20.4] - 2024-08-24

This release enables HTTP/2 for http client which is backward compatible and
pure HTTP/1 connections will still work.

### [Changed]
- client: enable http2 for http client ([#1445](https://github.com/paritytech/jsonrpsee/pull/1445))

## [v0.20.3] - 2023-10-24

This release fixes a cancel-safety issue in the server's graceful shutdown which could lead to high CPU usage.
Expand Down
18 changes: 9 additions & 9 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ resolver = "2"

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

[workspace.dependencies]
jsonrpsee-types = { path = "types", version = "0.20.3" }
jsonrpsee-core = { path = "core", version = "0.20.3" }
jsonrpsee-server = { path = "server", version = "0.20.3" }
jsonrpsee-ws-client = { path = "client/ws-client", version = "0.20.3" }
jsonrpsee-http-client = { path = "client/http-client", version = "0.20.3" }
jsonrpsee-wasm-client = { path = "client/wasm-client", version = "0.20.3" }
jsonrpsee-client-transport = { path = "client/transport", version = "0.20.3" }
jsonrpsee-proc-macros = { path = "proc-macros", version = "0.20.3" }
jsonrpsee-types = { path = "types", version = "0.20.4" }
jsonrpsee-core = { path = "core", version = "0.20.4" }
jsonrpsee-server = { path = "server", version = "0.20.4" }
jsonrpsee-ws-client = { path = "client/ws-client", version = "0.20.4" }
jsonrpsee-http-client = { path = "client/http-client", version = "0.20.4" }
jsonrpsee-wasm-client = { path = "client/wasm-client", version = "0.20.4" }
jsonrpsee-client-transport = { path = "client/transport", version = "0.20.4" }
jsonrpsee-proc-macros = { path = "proc-macros", version = "0.20.4" }
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.18.1/status.svg)](https://deps.rs/crate/jsonrpsee/0.20.0)
[![dependency status](https://deps.rs/crate/jsonrpsee/0.20.4/status.svg)](https://deps.rs/crate/jsonrpsee/0.20.4)

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

Expand Down

0 comments on commit 889b38f

Please sign in to comment.