From 1a9cf4f7760724032b729c43165716c7ecd842ad Mon Sep 17 00:00:00 2001 From: Max Inden Date: Fri, 24 Feb 2023 14:21:06 +0100 Subject: [PATCH] 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. --- Cargo.lock | 2 +- Cargo.toml | 2 +- transports/uds/CHANGELOG.md | 4 ++++ transports/uds/Cargo.toml | 2 +- 4 files changed, 7 insertions(+), 3 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 08abf741bed..f5e93182a37 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -2778,7 +2778,7 @@ dependencies = [ [[package]] name = "libp2p-uds" -version = "0.37.0" +version = "0.38.0" dependencies = [ "async-std", "futures", diff --git a/Cargo.toml b/Cargo.toml index 7970a864e99..5bac72b6d3e 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -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" } diff --git a/transports/uds/CHANGELOG.md b/transports/uds/CHANGELOG.md index 672d7b1adf5..6c6caff1e40 100644 --- a/transports/uds/CHANGELOG.md +++ b/transports/uds/CHANGELOG.md @@ -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]. diff --git a/transports/uds/Cargo.toml b/transports/uds/Cargo.toml index 476888c8f54..9f74b0bc979 100644 --- a/transports/uds/Cargo.toml +++ b/transports/uds/Cargo.toml @@ -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 "] license = "MIT" repository = "https://github.com/libp2p/rust-libp2p"