Skip to content

Commit c14f0c5

Browse files
Update minicbor requirement from 0.5 to 0.6 (#1772)
* Update minicbor requirement from 0.5 to 0.6 Updates the requirements on [minicbor](https://gitlab.com/twittner/minicbor) to permit the latest version. - [Release notes](https://gitlab.com/twittner/minicbor/tags) - [Commits](https://gitlab.com/twittner/minicbor/compare/minicbor-v0.5.0...minicbor-v0.6.0) Signed-off-by: dependabot[bot] <[email protected]> * *: Update changelogs and cargo tomls Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Max Inden <[email protected]>
1 parent ecdce0f commit c14f0c5

File tree

4 files changed

+9
-4
lines changed

4 files changed

+9
-4
lines changed

CHANGELOG.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,8 @@
2626
# Version 0.29.0 [unreleased]
2727

2828
- Update `libp2p-core`, `libp2p-gossipsub`, `libp2p-mplex`, `libp2p-noise`,
29-
`libp2p-plaintext`, `libp2p-websocket` and `parity-multiaddr`.
29+
`libp2p-plaintext`, `libp2p-request-response`, `libp2p-websocket` and
30+
`parity-multiaddr`.
3031

3132
# Version 0.28.1 [2020-09-10]
3233

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -73,7 +73,7 @@ libp2p-noise = { version = "0.24.1", path = "protocols/noise", optional = true }
7373
libp2p-ping = { version = "0.22.0", path = "protocols/ping", optional = true }
7474
libp2p-plaintext = { version = "0.23.0", path = "protocols/plaintext", optional = true }
7575
libp2p-pnet = { version = "0.19.1", path = "protocols/pnet", optional = true }
76-
libp2p-request-response = { version = "0.3.0", path = "protocols/request-response", optional = true }
76+
libp2p-request-response = { version = "0.4.0", path = "protocols/request-response", optional = true }
7777
libp2p-swarm = { version = "0.22.0", path = "swarm" }
7878
libp2p-uds = { version = "0.22.0", path = "transports/uds", optional = true }
7979
libp2p-wasm-ext = { version = "0.22.0", path = "transports/wasm-ext", optional = true }

protocols/request-response/CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
# 0.4.0 [unreleased]
2+
3+
- Update dependencies.
4+
15
# 0.3.0 [2020-09-09]
26

37
- Add support for opt-in request-based flow-control to any

protocols/request-response/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
name = "libp2p-request-response"
33
edition = "2018"
44
description = "Generic Request/Response Protocols"
5-
version = "0.3.0"
5+
version = "0.4.0"
66
authors = ["Parity Technologies <[email protected]>"]
77
license = "MIT"
88
repository = "https://github.com/libp2p/rust-libp2p"
@@ -17,7 +17,7 @@ libp2p-core = { version = "0.22.0", path = "../../core" }
1717
libp2p-swarm = { version = "0.22.0", path = "../../swarm" }
1818
log = "0.4.11"
1919
lru = "0.6"
20-
minicbor = { version = "0.5", features = ["std", "derive"] }
20+
minicbor = { version = "0.6", features = ["std", "derive"] }
2121
rand = "0.7"
2222
smallvec = "1.4"
2323
unsigned-varint = { version = "0.5", features = ["std", "futures"] }

0 commit comments

Comments
 (0)