Skip to content

Commit

Permalink
chore: release v0.17.1 (#1091)
Browse files Browse the repository at this point in the history
  • Loading branch information
niklasad1 authored Apr 21, 2023
1 parent a0e0170 commit 5466279
Show file tree
Hide file tree
Showing 3 changed files with 17 additions and 10 deletions.
7 changes: 7 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,13 @@ The format is based on [Keep a Changelog].

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

## [v0.17.1] - 2023-04-21

This release fixes HTTP graceful shutdown for the server.

### [Fixed]
- server: fix http graceful shutdown ([#1090](https://github.com/paritytech/jsonrpsee/pull/1090))

## [v0.17.0] - 2023-04-17

This is a significant release and the major breaking changes to be aware of are:
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.17.0"
version = "0.17.1"
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.17.0" }
jsonrpsee-core = { path = "core", version = "0.17.0" }
jsonrpsee-server = { path = "server", version = "0.17.0" }
jsonrpsee-ws-client = { path = "client/ws-client", version = "0.17.0" }
jsonrpsee-http-client = { path = "client/http-client", version = "0.17.0" }
jsonrpsee-wasm-client = { path = "client/wasm-client", version = "0.17.0" }
jsonrpsee-client-transport = { path = "client/transport", version = "0.17.0" }
jsonrpsee-proc-macros = { path = "proc-macros", version = "0.17.0" }
jsonrpsee-types = { path = "types", version = "0.17.1" }
jsonrpsee-core = { path = "core", version = "0.17.1" }
jsonrpsee-server = { path = "server", version = "0.17.1" }
jsonrpsee-ws-client = { path = "client/ws-client", version = "0.17.1" }
jsonrpsee-http-client = { path = "client/http-client", version = "0.17.1" }
jsonrpsee-wasm-client = { path = "client/wasm-client", version = "0.17.1" }
jsonrpsee-client-transport = { path = "client/transport", version = "0.17.1" }
jsonrpsee-proc-macros = { path = "proc-macros", version = "0.17.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.yml/badge.svg)](https://github.com/paritytech/jsonrpsee/actions/workflows/benchmarks.yml)
[![dependency status](https://deps.rs/crate/jsonrpsee/0.16.1/status.svg)](https://deps.rs/crate/jsonrpsee/0.16.1)
[![dependency status](https://deps.rs/crate/jsonrpsee/0.17.1/status.svg)](https://deps.rs/crate/jsonrpsee/0.17.1)

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

Expand Down

0 comments on commit 5466279

Please sign in to comment.