Skip to content

Commit

Permalink
chore: release v0.24.1 (#1431)
Browse files Browse the repository at this point in the history
* chore: release v0.24.1

* Update CHANGELOG.md

* fix nits
  • Loading branch information
niklasad1 committed Jul 30, 2024
1 parent f4ff5a1 commit 65fcb8c
Show file tree
Hide file tree
Showing 3 changed files with 23 additions and 10 deletions.
13 changes: 13 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,19 @@ The format is based on [Keep a Changelog].

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

## [v0.24.1] - 2024-07-30

This is a small release that forces jsonrpsee `rustls` to use the crypto backend ring which may panic if both `ring` and `aws-lc` features are enabled.
See https://github.com/rustls/rustls/issues/1877 for further information.

This has no impact on the default configuration of jsonrpsee which was already using `ring` as the default.

### [Changed]
- chore(deps): update gloo-net requirement from 0.5.0 to 0.6.0 ([#1428](https://github.com/paritytech/jsonrpsee/pull/1428))

### [Fixed]
- fix: Explicitly set rustls provider before using rustls ([#1424](https://github.com/paritytech/jsonrpsee/pull/1424))

## [v0.24.0] - 2024-07-05

A breaking release that mainly changes:
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 = "2"

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

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

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

Expand Down

0 comments on commit 65fcb8c

Please sign in to comment.