Skip to content

Commit 5099ab5

Browse files
Update unsigned-varint requirement from 0.4 to 0.5 (#1761)
* Update unsigned-varint requirement from 0.4 to 0.5 Updates the requirements on [unsigned-varint](https://github.com/paritytech/unsigned-varint) to permit the latest version. - [Release notes](https://github.com/paritytech/unsigned-varint/releases) - [Changelog](https://github.com/paritytech/unsigned-varint/blob/master/CHANGELOG.md) - [Commits](https://github.com/paritytech/unsigned-varint/commits/v0.5.1) 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 df93116 commit 5099ab5

File tree

14 files changed

+36
-17
lines changed

14 files changed

+36
-17
lines changed

CHANGELOG.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@
2525

2626
# Version 0.28.2 [unreleased]
2727

28-
- Update `libp2p-gossipsub`, `libp2p-noise` and `libp2p-websocket`.
28+
- Update `libp2p-core`, `libp2p-gossipsub`, `libp2p-mplex`, `libp2p-noise`, `libp2p-websocket` and `parity-multiaddr`.
2929

3030
# Version 0.28.1 [2020-09-10]
3131

Cargo.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -62,13 +62,13 @@ atomic = "0.4.6"
6262
bytes = "0.5"
6363
futures = "0.3.1"
6464
lazy_static = "1.2"
65-
libp2p-core = { version = "0.22.1", path = "core" }
65+
libp2p-core = { version = "0.22.2", path = "core" }
6666
libp2p-core-derive = { version = "0.20.2", path = "misc/core-derive" }
6767
libp2p-floodsub = { version = "0.22.0", path = "protocols/floodsub", optional = true }
6868
libp2p-gossipsub = { version = "0.22.1", path = "./protocols/gossipsub", optional = true }
6969
libp2p-identify = { version = "0.22.0", path = "protocols/identify", optional = true }
7070
libp2p-kad = { version = "0.23.1", path = "protocols/kad", optional = true }
71-
libp2p-mplex = { version = "0.22.0", path = "muxers/mplex", optional = true }
71+
libp2p-mplex = { version = "0.22.1", path = "muxers/mplex", optional = true }
7272
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.22.1", path = "protocols/plaintext", optional = true }
@@ -78,7 +78,7 @@ 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 }
8080
libp2p-yamux = { version = "0.25.0", path = "muxers/yamux", optional = true }
81-
multiaddr = { package = "parity-multiaddr", version = "0.9.1", path = "misc/multiaddr" }
81+
multiaddr = { package = "parity-multiaddr", version = "0.9.3", path = "misc/multiaddr" }
8282
multihash = "0.11.0"
8383
parking_lot = "0.10.0"
8484
pin-project = "0.4.17"

core/CHANGELOG.md

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

37
- Require at least parity-multiaddr v0.9.2 in order to fulfill `Ord` bound on

core/Cargo.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
name = "libp2p-core"
33
edition = "2018"
44
description = "Core traits and structs of libp2p"
5-
version = "0.22.1"
5+
version = "0.22.2"
66
authors = ["Parity Technologies <[email protected]>"]
77
license = "MIT"
88
repository = "https://github.com/libp2p/rust-libp2p"
@@ -22,7 +22,7 @@ libsecp256k1 = { version = "0.3.1", optional = true }
2222
log = "0.4"
2323
multiaddr = { package = "parity-multiaddr", version = "0.9.2", path = "../misc/multiaddr" }
2424
multihash = "0.11.0"
25-
multistream-select = { version = "0.8.2", path = "../misc/multistream-select" }
25+
multistream-select = { version = "0.8.3", path = "../misc/multistream-select" }
2626
parking_lot = "0.10.0"
2727
pin-project = "0.4.17"
2828
prost = "0.6.1"
@@ -31,7 +31,7 @@ rw-stream-sink = "0.2.0"
3131
sha2 = "0.9.1"
3232
smallvec = "1.0"
3333
thiserror = "1.0"
34-
unsigned-varint = "0.4"
34+
unsigned-varint = "0.5"
3535
void = "1"
3636
zeroize = "1"
3737

misc/multiaddr/CHANGELOG.md

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

37
- Add `Ord` instance for `Multiaddr`.

misc/multiaddr/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ description = "Implementation of the multiaddr format"
66
homepage = "https://github.com/libp2p/rust-libp2p"
77
keywords = ["multiaddr", "ipfs"]
88
license = "MIT"
9-
version = "0.9.2"
9+
version = "0.9.3"
1010

1111
[dependencies]
1212
arrayref = "0.3"
@@ -17,7 +17,7 @@ multihash = "0.11.0"
1717
percent-encoding = "2.1.0"
1818
serde = "1.0.70"
1919
static_assertions = "1.1"
20-
unsigned-varint = "0.4"
20+
unsigned-varint = "0.5"
2121
url = { version = "2.1.0", default-features = false }
2222

2323
[dev-dependencies]
Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
# 0.8.3 [unreleased]
2+
3+
- Update dependencies.
4+
15
# 0.8.2 [2020-06-22]
26

37
- Updated dependencies.

misc/multistream-select/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[package]
22
name = "multistream-select"
33
description = "Multistream-select negotiation protocol for libp2p"
4-
version = "0.8.2"
4+
version = "0.8.3"
55
authors = ["Parity Technologies <[email protected]>"]
66
license = "MIT"
77
repository = "https://github.com/libp2p/rust-libp2p"
@@ -15,7 +15,7 @@ futures = "0.3"
1515
log = "0.4"
1616
pin-project = "0.4.17"
1717
smallvec = "1.0"
18-
unsigned-varint = "0.4"
18+
unsigned-varint = "0.5"
1919

2020
[dev-dependencies]
2121
async-std = "1.6.2"

muxers/mplex/CHANGELOG.md

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

37
- Bump `libp2p-core` dependency.

muxers/mplex/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
name = "libp2p-mplex"
33
edition = "2018"
44
description = "Mplex multiplexing protocol for libp2p"
5-
version = "0.22.0"
5+
version = "0.22.1"
66
authors = ["Parity Technologies <[email protected]>"]
77
license = "MIT"
88
repository = "https://github.com/libp2p/rust-libp2p"
@@ -17,7 +17,7 @@ futures_codec = "0.4"
1717
libp2p-core = { version = "0.22.0", path = "../../core" }
1818
log = "0.4"
1919
parking_lot = "0.10"
20-
unsigned-varint = { version = "0.4", features = ["futures-codec"] }
20+
unsigned-varint = { version = "0.5", features = ["futures-codec"] }
2121

2222
[dev-dependencies]
2323
async-std = "1.6.2"

0 commit comments

Comments
 (0)