Skip to content

Commit

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

* Update CHANGELOG.md

* Update CHANGELOG.md

* Update CHANGELOG.md
  • Loading branch information
niklasad1 committed Aug 2, 2024
1 parent 6c29395 commit c9e26b0
Show file tree
Hide file tree
Showing 2 changed files with 21 additions and 9 deletions.
12 changes: 12 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,18 @@ The format is based on [Keep a Changelog].

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

## [v0.24.2] - 2024-08-02

Another small release that fixes:
- Notifications without params were not handled correctly in the client, which been has been fixed.
- Improve compile times and reduce code-generation in the proc macro crate.

### [Fixed]
- client: parse notification without params ([#1436](https://github.com/paritytech/jsonrpsee/pull/1436))
- proc macros: remove direct tracing calls ([#1405](https://github.com/paritytech/jsonrpsee/pull/1405))

Thanks to the external contributor [@DaniPopes](https://github.com/DaniPopes) who contributed to this release.

## [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.
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.1"
version = "0.24.2"
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.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" }
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" }

0 comments on commit c9e26b0

Please sign in to comment.