fix(uds): Bump version

https://github.com/libp2p/rust-libp2p/pull/3196/ forgot to bump `libp2p-uds`. `libp2p-uds` was updated to `libp2p-core` `v0.39.0` thus requiring the version bump.

This has happened before, see https://github.com/libp2p/rust-libp2p/pull/2720.

Pull-Request: #3502.
This commit is contained in:
Max Inden
2023-02-24 14:21:06 +01:00
committed by GitHub
parent 71015ee16f
commit 1a9cf4f776
4 changed files with 7 additions and 3 deletions

2
Cargo.lock generated
View File

@ -2778,7 +2778,7 @@ dependencies = [
[[package]]
name = "libp2p-uds"
version = "0.37.0"
version = "0.38.0"
dependencies = [
"async-std",
"futures",

View File

@ -108,7 +108,7 @@ libp2p-relay = { version = "0.15.0", path = "protocols/relay", optional = true }
libp2p-rendezvous = { version = "0.12.0", path = "protocols/rendezvous", optional = true }
libp2p-request-response = { version = "0.24.0", path = "protocols/request-response", optional = true }
libp2p-swarm = { version = "0.42.0", path = "swarm" }
libp2p-uds = { version = "0.37.0", path = "transports/uds", optional = true }
libp2p-uds = { version = "0.38.0", path = "transports/uds", optional = true }
libp2p-wasm-ext = { version = "0.39.0", path = "transports/wasm-ext", optional = true }
libp2p-yamux = { version = "0.43.0", path = "muxers/yamux", optional = true }
multiaddr = { version = "0.17.0" }

View File

@ -1,3 +1,7 @@
# 0.38.0
- Update to `libp2p-core` `v0.39.0`.
# 0.37.0
- Update `rust-version` to reflect the actual MSRV: 1.60.0. See [PR 3090].

View File

@ -3,7 +3,7 @@ name = "libp2p-uds"
edition = "2021"
rust-version = "1.60.0"
description = "Unix domain sockets transport for libp2p"
version = "0.37.0"
version = "0.38.0"
authors = ["Parity Technologies <admin@parity.io>"]
license = "MIT"
repository = "https://github.com/libp2p/rust-libp2p"