Skip to content

Commit

Permalink
patch release v0.18.2 (#1114)
Browse files Browse the repository at this point in the history
* add changelog and bump version

* implement mistakes
  • Loading branch information
tadeohepperle authored May 10, 2023
1 parent 37f1ce2 commit 819ed90
Show file tree
Hide file tree
Showing 2 changed files with 18 additions and 9 deletions.
9 changes: 9 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,15 @@ The format is based on [Keep a Changelog].

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


## [v0.18.2] - 2023-05-10

This release improves error message for `too big batch response` and exposes the `BatchRequestConfig type` in order to make it possible to use `ServerBuilder::set_batch_request_config`

### Fixed
- server: export BatchRequestConfig ([#1112](https://github.com/paritytech/jsonrpsee/pull/1112))
- fix(server): improve too big batch response msg ([#1107](https://github.com/paritytech/jsonrpsee/pull/1107))

## [v0.18.1] - 2023-04-26

This release fixes a couple bugs and improves the ergonomics for the HTTP client
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 <[email protected]>", "Pierre Krieger <[email protected]>"]
version = "0.18.1"
version = "0.18.2"
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.18.1" }
jsonrpsee-core = { path = "core", version = "0.18.1" }
jsonrpsee-server = { path = "server", version = "0.18.1" }
jsonrpsee-ws-client = { path = "client/ws-client", version = "0.18.1" }
jsonrpsee-http-client = { path = "client/http-client", version = "0.18.1" }
jsonrpsee-wasm-client = { path = "client/wasm-client", version = "0.18.1" }
jsonrpsee-client-transport = { path = "client/transport", version = "0.18.1" }
jsonrpsee-proc-macros = { path = "proc-macros", version = "0.18.1" }
jsonrpsee-types = { path = "types", version = "0.18.2" }
jsonrpsee-core = { path = "core", version = "0.18.2" }
jsonrpsee-server = { path = "server", version = "0.18.2" }
jsonrpsee-ws-client = { path = "client/ws-client", version = "0.18.2" }
jsonrpsee-http-client = { path = "client/http-client", version = "0.18.2" }
jsonrpsee-wasm-client = { path = "client/wasm-client", version = "0.18.2" }
jsonrpsee-client-transport = { path = "client/transport", version = "0.18.2" }
jsonrpsee-proc-macros = { path = "proc-macros", version = "0.18.2" }

0 comments on commit 819ed90

Please sign in to comment.