Skip to content

Commit c9e26b0

Browse files
authored
chore: release v0.24.2 (#1439)
* chore: release v0.24.2 * Update CHANGELOG.md * Update CHANGELOG.md * Update CHANGELOG.md
1 parent 6c29395 commit c9e26b0

File tree

2 files changed

+21
-9
lines changed

2 files changed

+21
-9
lines changed

CHANGELOG.md

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

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

7+
## [v0.24.2] - 2024-08-02
8+
9+
Another small release that fixes:
10+
- Notifications without params were not handled correctly in the client, which been has been fixed.
11+
- Improve compile times and reduce code-generation in the proc macro crate.
12+
13+
### [Fixed]
14+
- client: parse notification without params ([#1436](https://github.com/paritytech/jsonrpsee/pull/1436))
15+
- proc macros: remove direct tracing calls ([#1405](https://github.com/paritytech/jsonrpsee/pull/1405))
16+
17+
Thanks to the external contributor [@DaniPopes](https://github.com/DaniPopes) who contributed to this release.
18+
719
## [v0.24.1] - 2024-07-30
820

921
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.

Cargo.toml

+9-9
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ resolver = "2"
2020

2121
[workspace.package]
2222
authors = ["Parity Technologies <[email protected]>", "Pierre Krieger <[email protected]>"]
23-
version = "0.24.1"
23+
version = "0.24.2"
2424
edition = "2021"
2525
rust-version = "1.74.1"
2626
license = "MIT"
@@ -31,11 +31,11 @@ keywords = ["jsonrpc", "json", "http", "websocket", "WASM"]
3131
readme = "README.md"
3232

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

0 commit comments

Comments
 (0)