From 48579b51d6de1a4354cff4ab2d32ff1a8b884f2a Mon Sep 17 00:00:00 2001 From: Darius Date: Sat, 4 Jan 2025 17:08:19 -0500 Subject: [PATCH] chore: update changelog and version in cargo.toml --- Cargo.lock | 2 +- Cargo.toml | 2 +- protocols/request-response/CHANGELOG.md | 7 +++++-- protocols/request-response/Cargo.toml | 2 +- 4 files changed, 8 insertions(+), 5 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 091b1b8dede..ce6d3e1ed7b 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -3244,7 +3244,7 @@ dependencies = [ [[package]] name = "libp2p-request-response" -version = "0.28.0" +version = "0.28.1" dependencies = [ "anyhow", "async-std", diff --git a/Cargo.toml b/Cargo.toml index b8186584487..ea4a5484d8f 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -97,7 +97,7 @@ libp2p-pnet = { version = "0.25.0", path = "transports/pnet" } libp2p-quic = { version = "0.11.2", path = "transports/quic" } libp2p-relay = { version = "0.18.1", path = "protocols/relay" } libp2p-rendezvous = { version = "0.15.1", path = "protocols/rendezvous" } -libp2p-request-response = { version = "0.28.0", path = "protocols/request-response" } +libp2p-request-response = { version = "0.28.1", path = "protocols/request-response" } libp2p-server = { version = "0.12.6", path = "misc/server" } libp2p-stream = { version = "0.2.0-alpha.1", path = "protocols/stream" } libp2p-swarm = { version = "0.45.2", path = "swarm" } diff --git a/protocols/request-response/CHANGELOG.md b/protocols/request-response/CHANGELOG.md index 514374c3a4b..b8e7f878769 100644 --- a/protocols/request-response/CHANGELOG.md +++ b/protocols/request-response/CHANGELOG.md @@ -1,3 +1,8 @@ +## 0.28.1 + +- Allow configurable request and response sizes for `json` and `cbor` codec. + See [PR XXXX](https://github.com/libp2p/rust-libp2p/pull/XXXX). + ## 0.28.0 - Add connection id to the events emitted by a request-response `Behaviour`. @@ -32,8 +37,6 @@ ## 0.26.1 -- Allow configurable request and response sizes for `json` and `cbor` codec. - See [PR XXXX](https://github.com/libp2p/rust-libp2p/pull/XXXX). - Derive `PartialOrd` and `Ord` for `{Out,In}boundRequestId`. See [PR 4956](https://github.com/libp2p/rust-libp2p/pull/4956). diff --git a/protocols/request-response/Cargo.toml b/protocols/request-response/Cargo.toml index cb78f536ae4..a551fa3d387 100644 --- a/protocols/request-response/Cargo.toml +++ b/protocols/request-response/Cargo.toml @@ -3,7 +3,7 @@ name = "libp2p-request-response" edition = "2021" rust-version = { workspace = true } description = "Generic Request/Response Protocols" -version = "0.28.0" +version = "0.28.1" authors = ["Parity Technologies "] license = "MIT" repository = "https://github.com/libp2p/rust-libp2p"