From c94262d03a2c01e54d25b429258cddfe1f1a8e4c Mon Sep 17 00:00:00 2001 From: "Roman S. Borschel" Date: Thu, 3 Sep 2020 12:31:04 +0200 Subject: [PATCH] Set development versions appropriately and update changelogs. --- Cargo.toml | 22 +++++++++++----------- core/Cargo.toml | 2 +- muxers/mplex/CHANGELOG.md | 4 ++++ muxers/mplex/Cargo.toml | 4 ++-- muxers/yamux/CHANGELOG.md | 4 ++++ muxers/yamux/Cargo.toml | 4 ++-- protocols/deflate/CHANGELOG.md | 4 ++++ protocols/deflate/Cargo.toml | 4 ++-- protocols/floodsub/CHANGELOG.md | 2 +- protocols/floodsub/Cargo.toml | 2 +- protocols/gossipsub/CHANGELOG.md | 2 +- protocols/gossipsub/Cargo.toml | 2 +- protocols/identify/CHANGELOG.md | 2 +- protocols/identify/Cargo.toml | 2 +- protocols/kad/CHANGELOG.md | 2 +- protocols/kad/Cargo.toml | 2 +- protocols/mdns/CHANGELOG.md | 2 +- protocols/mdns/Cargo.toml | 2 +- protocols/noise/CHANGELOG.md | 2 ++ protocols/noise/Cargo.toml | 2 +- protocols/ping/CHANGELOG.md | 2 +- protocols/ping/Cargo.toml | 2 +- protocols/plaintext/CHANGELOG.md | 4 ++++ protocols/plaintext/Cargo.toml | 4 ++-- protocols/request-response/CHANGELOG.md | 2 +- protocols/request-response/Cargo.toml | 2 +- protocols/secio/CHANGELOG.md | 4 ++++ protocols/secio/Cargo.toml | 4 ++-- swarm/CHANGELOG.md | 3 +++ swarm/Cargo.toml | 2 +- transports/dns/CHANGELOG.md | 4 ++++ transports/dns/Cargo.toml | 4 ++-- transports/tcp/CHANGELOG.md | 4 ++++ transports/tcp/Cargo.toml | 4 ++-- transports/uds/CHANGELOG.md | 4 ++++ transports/uds/Cargo.toml | 4 ++-- transports/wasm-ext/CHANGELOG.md | 4 ++++ transports/wasm-ext/Cargo.toml | 4 ++-- transports/websocket/CHANGELOG.md | 4 ++++ transports/websocket/Cargo.toml | 4 ++-- 40 files changed, 93 insertions(+), 48 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index 1bd2b7c9..5c969016 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -64,23 +64,23 @@ atomic = "0.4.6" bytes = "0.5" futures = "0.3.1" lazy_static = "1.2" -libp2p-core = { version = "0.21.0", path = "core" } +libp2p-core = { version = "0.22.0", path = "core" } libp2p-core-derive = { version = "0.20.2", path = "misc/core-derive" } libp2p-floodsub = { version = "0.22.0", path = "protocols/floodsub", optional = true } libp2p-gossipsub = { version = "0.22.0", path = "./protocols/gossipsub", optional = true } libp2p-identify = { version = "0.22.0", path = "protocols/identify", optional = true } libp2p-kad = { version = "0.23.0", path = "protocols/kad", optional = true } -libp2p-mplex = { version = "0.21.0", path = "muxers/mplex", optional = true } +libp2p-mplex = { version = "0.22.0", path = "muxers/mplex", optional = true } libp2p-noise = { version = "0.24.0", path = "protocols/noise", optional = true } libp2p-ping = { version = "0.22.0", path = "protocols/ping", optional = true } -libp2p-plaintext = { version = "0.21.0", path = "protocols/plaintext", optional = true } +libp2p-plaintext = { version = "0.22.0", path = "protocols/plaintext", optional = true } libp2p-pnet = { version = "0.19.1", path = "protocols/pnet", optional = true } libp2p-request-response = { version = "0.3.0", path = "protocols/request-response", optional = true } -libp2p-secio = { version = "0.21.0", path = "protocols/secio", default-features = false, optional = true } +libp2p-secio = { version = "0.22.0", path = "protocols/secio", default-features = false, optional = true } libp2p-swarm = { version = "0.22.0", path = "swarm" } -libp2p-uds = { version = "0.21.0", path = "transports/uds", optional = true } -libp2p-wasm-ext = { version = "0.21.0", path = "transports/wasm-ext", optional = true } -libp2p-yamux = { version = "0.21.0", path = "muxers/yamux", optional = true } +libp2p-uds = { version = "0.22.0", path = "transports/uds", optional = true } +libp2p-wasm-ext = { version = "0.22.0", path = "transports/wasm-ext", optional = true } +libp2p-yamux = { version = "0.22.0", path = "muxers/yamux", optional = true } multiaddr = { package = "parity-multiaddr", version = "0.9.1", path = "misc/multiaddr" } multihash = "0.11.0" parking_lot = "0.10.0" @@ -89,11 +89,11 @@ smallvec = "1.0" wasm-timer = "0.2.4" [target.'cfg(not(any(target_os = "emscripten", target_os = "wasi", target_os = "unknown")))'.dependencies] -libp2p-deflate = { version = "0.21.0", path = "protocols/deflate", optional = true } -libp2p-dns = { version = "0.21.0", path = "transports/dns", optional = true } +libp2p-deflate = { version = "0.22.0", path = "protocols/deflate", optional = true } +libp2p-dns = { version = "0.22.0", path = "transports/dns", optional = true } libp2p-mdns = { version = "0.22.0", path = "protocols/mdns", optional = true } -libp2p-tcp = { version = "0.21.0", path = "transports/tcp", optional = true } -libp2p-websocket = { version = "0.22.0", path = "transports/websocket", optional = true } +libp2p-tcp = { version = "0.22.0", path = "transports/tcp", optional = true } +libp2p-websocket = { version = "0.23.0", path = "transports/websocket", optional = true } [dev-dependencies] async-std = "1.6.2" diff --git a/core/Cargo.toml b/core/Cargo.toml index 0478e7b2..3da28956 100644 --- a/core/Cargo.toml +++ b/core/Cargo.toml @@ -2,7 +2,7 @@ name = "libp2p-core" edition = "2018" description = "Core traits and structs of libp2p" -version = "0.21.0" +version = "0.22.0" authors = ["Parity Technologies "] license = "MIT" repository = "https://github.com/libp2p/rust-libp2p" diff --git a/muxers/mplex/CHANGELOG.md b/muxers/mplex/CHANGELOG.md index 2f2ce748..12f04a47 100644 --- a/muxers/mplex/CHANGELOG.md +++ b/muxers/mplex/CHANGELOG.md @@ -1,3 +1,7 @@ +# 0.22.0 [unreleased] + +- Bump `libp2p-core` dependency. + # 0.21.0 [2020-08-18] - Bump `libp2p-core` dependency. diff --git a/muxers/mplex/Cargo.toml b/muxers/mplex/Cargo.toml index 2c580cea..c5f00cf3 100644 --- a/muxers/mplex/Cargo.toml +++ b/muxers/mplex/Cargo.toml @@ -2,7 +2,7 @@ name = "libp2p-mplex" edition = "2018" description = "Mplex multiplexing protocol for libp2p" -version = "0.21.0" +version = "0.22.0" authors = ["Parity Technologies "] license = "MIT" repository = "https://github.com/libp2p/rust-libp2p" @@ -14,7 +14,7 @@ bytes = "0.5" fnv = "1.0" futures = "0.3.1" futures_codec = "0.4" -libp2p-core = { version = "0.21.0", path = "../../core" } +libp2p-core = { version = "0.22.0", path = "../../core" } log = "0.4" parking_lot = "0.10" unsigned-varint = { version = "0.4", features = ["futures-codec"] } diff --git a/muxers/yamux/CHANGELOG.md b/muxers/yamux/CHANGELOG.md index fc4d312b..a3f8ed3d 100644 --- a/muxers/yamux/CHANGELOG.md +++ b/muxers/yamux/CHANGELOG.md @@ -1,3 +1,7 @@ +# 0.22.0 [unreleased] + +- Bump `libp2p-core` dependency. + # 0.21.0 [2020-08-18] - Bump `libp2p-core` dependency. diff --git a/muxers/yamux/Cargo.toml b/muxers/yamux/Cargo.toml index fa6a9d93..b24c5bba 100644 --- a/muxers/yamux/Cargo.toml +++ b/muxers/yamux/Cargo.toml @@ -2,7 +2,7 @@ name = "libp2p-yamux" edition = "2018" description = "Yamux multiplexing protocol for libp2p" -version = "0.21.0" +version = "0.22.0" authors = ["Parity Technologies "] license = "MIT" repository = "https://github.com/libp2p/rust-libp2p" @@ -11,7 +11,7 @@ categories = ["network-programming", "asynchronous"] [dependencies] futures = "0.3.1" -libp2p-core = { version = "0.21.0", path = "../../core" } +libp2p-core = { version = "0.22.0", path = "../../core" } parking_lot = "0.10" thiserror = "1.0" yamux = "0.4.5" diff --git a/protocols/deflate/CHANGELOG.md b/protocols/deflate/CHANGELOG.md index 1419b1ad..f344f660 100644 --- a/protocols/deflate/CHANGELOG.md +++ b/protocols/deflate/CHANGELOG.md @@ -1,3 +1,7 @@ +# 0.22.0 [unreleased] + +- Bump `libp2p-core` dependency. + # 0.21.0 [2020-08-18] - Bump `libp2p-core` dependency. diff --git a/protocols/deflate/Cargo.toml b/protocols/deflate/Cargo.toml index 35526a2e..2c6515f8 100644 --- a/protocols/deflate/Cargo.toml +++ b/protocols/deflate/Cargo.toml @@ -2,7 +2,7 @@ name = "libp2p-deflate" edition = "2018" description = "Deflate encryption protocol for libp2p" -version = "0.21.0" +version = "0.22.0" authors = ["Parity Technologies "] license = "MIT" repository = "https://github.com/libp2p/rust-libp2p" @@ -11,7 +11,7 @@ categories = ["network-programming", "asynchronous"] [dependencies] futures = "0.3.1" -libp2p-core = { version = "0.21.0", path = "../../core" } +libp2p-core = { version = "0.22.0", path = "../../core" } flate2 = "1.0" [dev-dependencies] diff --git a/protocols/floodsub/CHANGELOG.md b/protocols/floodsub/CHANGELOG.md index ccf096b1..2a7c4b71 100644 --- a/protocols/floodsub/CHANGELOG.md +++ b/protocols/floodsub/CHANGELOG.md @@ -1,6 +1,6 @@ # 0.22.0 [unreleased] -- Update `libp2p-swarm`. +- Update `libp2p-swarm` and `libp2p-core`. # 0.21.0 [2020-08-18] diff --git a/protocols/floodsub/Cargo.toml b/protocols/floodsub/Cargo.toml index 7e637a76..ce96ba29 100644 --- a/protocols/floodsub/Cargo.toml +++ b/protocols/floodsub/Cargo.toml @@ -13,7 +13,7 @@ categories = ["network-programming", "asynchronous"] cuckoofilter = "0.3.2" fnv = "1.0" futures = "0.3.1" -libp2p-core = { version = "0.21.0", path = "../../core" } +libp2p-core = { version = "0.22.0", path = "../../core" } libp2p-swarm = { version = "0.22.0", path = "../../swarm" } prost = "0.6.1" rand = "0.7" diff --git a/protocols/gossipsub/CHANGELOG.md b/protocols/gossipsub/CHANGELOG.md index 8b356a18..2ca3c316 100644 --- a/protocols/gossipsub/CHANGELOG.md +++ b/protocols/gossipsub/CHANGELOG.md @@ -1,6 +1,6 @@ # 0.22.0 [unreleased] -- Update `libp2p-swarm`. +- Update `libp2p-swarm` and `libp2p-core`. # 0.21.0 [2020-08-18] diff --git a/protocols/gossipsub/Cargo.toml b/protocols/gossipsub/Cargo.toml index 4b080f11..46173141 100644 --- a/protocols/gossipsub/Cargo.toml +++ b/protocols/gossipsub/Cargo.toml @@ -11,7 +11,7 @@ categories = ["network-programming", "asynchronous"] [dependencies] libp2p-swarm = { version = "0.22.0", path = "../../swarm" } -libp2p-core = { version = "0.21.0", path = "../../core" } +libp2p-core = { version = "0.22.0", path = "../../core" } bytes = "0.5.4" byteorder = "1.3.2" fnv = "1.0.6" diff --git a/protocols/identify/CHANGELOG.md b/protocols/identify/CHANGELOG.md index 9c38322f..f1a93b09 100644 --- a/protocols/identify/CHANGELOG.md +++ b/protocols/identify/CHANGELOG.md @@ -1,6 +1,6 @@ # 0.22.0 [unreleased] -- Update `libp2p-swarm`. +- Update `libp2p-swarm` and `libp2p-core`. # 0.21.0 [2020-08-18] diff --git a/protocols/identify/Cargo.toml b/protocols/identify/Cargo.toml index 187f42b4..f87c6ca3 100644 --- a/protocols/identify/Cargo.toml +++ b/protocols/identify/Cargo.toml @@ -11,7 +11,7 @@ categories = ["network-programming", "asynchronous"] [dependencies] futures = "0.3.1" -libp2p-core = { version = "0.21.0", path = "../../core" } +libp2p-core = { version = "0.22.0", path = "../../core" } libp2p-swarm = { version = "0.22.0", path = "../../swarm" } log = "0.4.1" prost = "0.6.1" diff --git a/protocols/kad/CHANGELOG.md b/protocols/kad/CHANGELOG.md index 877a2e54..99c06c6b 100644 --- a/protocols/kad/CHANGELOG.md +++ b/protocols/kad/CHANGELOG.md @@ -2,7 +2,7 @@ - Add `Distance::log2` ([PR 1719](https://github.com/libp2p/rust-libp2p/pull/1719)). -- Update `libp2p-swarm`. +- Update `libp2p-swarm` and `libp2p-core`. # 0.22.1 [2020-08-19] diff --git a/protocols/kad/Cargo.toml b/protocols/kad/Cargo.toml index f91e39dc..d4c8b869 100644 --- a/protocols/kad/Cargo.toml +++ b/protocols/kad/Cargo.toml @@ -17,7 +17,7 @@ fnv = "1.0" futures_codec = "0.4" futures = "0.3.1" log = "0.4" -libp2p-core = { version = "0.21.0", path = "../../core" } +libp2p-core = { version = "0.22.0", path = "../../core" } libp2p-swarm = { version = "0.22.0", path = "../../swarm" } multihash = "0.11.0" prost = "0.6.1" diff --git a/protocols/mdns/CHANGELOG.md b/protocols/mdns/CHANGELOG.md index e1c05242..3e81af79 100644 --- a/protocols/mdns/CHANGELOG.md +++ b/protocols/mdns/CHANGELOG.md @@ -1,6 +1,6 @@ # 0.22.0 [unreleased] -- Update `libp2p-swarm`. +- Update `libp2p-swarm` and `libp2p-core`. # 0.21.0 [2020-08-18] diff --git a/protocols/mdns/Cargo.toml b/protocols/mdns/Cargo.toml index 24d582d8..9ddee284 100644 --- a/protocols/mdns/Cargo.toml +++ b/protocols/mdns/Cargo.toml @@ -16,7 +16,7 @@ dns-parser = "0.8" either = "1.5.3" futures = "0.3.1" lazy_static = "1.2" -libp2p-core = { version = "0.21.0", path = "../../core" } +libp2p-core = { version = "0.22.0", path = "../../core" } libp2p-swarm = { version = "0.22.0", path = "../../swarm" } log = "0.4" net2 = "0.2" diff --git a/protocols/noise/CHANGELOG.md b/protocols/noise/CHANGELOG.md index bcfc0e74..c2aa2294 100644 --- a/protocols/noise/CHANGELOG.md +++ b/protocols/noise/CHANGELOG.md @@ -1,5 +1,7 @@ # 0.24.0 [unreleased] +- Bump `libp2p-core` dependency. + - Remove fallback legacy handshake payload decoding by default. To continue supporting inbound legacy handshake payloads, `recv_legacy_handshake` must be configured on the `LegacyConfig`. diff --git a/protocols/noise/Cargo.toml b/protocols/noise/Cargo.toml index bd5e3cff..4425e8e1 100644 --- a/protocols/noise/Cargo.toml +++ b/protocols/noise/Cargo.toml @@ -12,7 +12,7 @@ bytes = "0.5" curve25519-dalek = "2.0.0" futures = "0.3.1" lazy_static = "1.2" -libp2p-core = { version = "0.21.0", path = "../../core" } +libp2p-core = { version = "0.22.0", path = "../../core" } log = "0.4" prost = "0.6.1" rand = "0.7.2" diff --git a/protocols/ping/CHANGELOG.md b/protocols/ping/CHANGELOG.md index 0496ceca..b33a46f1 100644 --- a/protocols/ping/CHANGELOG.md +++ b/protocols/ping/CHANGELOG.md @@ -1,6 +1,6 @@ # 0.22.0 [unreleased] -- Update `libp2p-swarm`. +- Update `libp2p-swarm` and `libp2p-core`. # 0.21.0 [2020-08-18] diff --git a/protocols/ping/Cargo.toml b/protocols/ping/Cargo.toml index 4420e401..13c835ac 100644 --- a/protocols/ping/Cargo.toml +++ b/protocols/ping/Cargo.toml @@ -11,7 +11,7 @@ categories = ["network-programming", "asynchronous"] [dependencies] futures = "0.3.1" -libp2p-core = { version = "0.21.0", path = "../../core" } +libp2p-core = { version = "0.22.0", path = "../../core" } libp2p-swarm = { version = "0.22.0", path = "../../swarm" } log = "0.4.1" rand = "0.7.2" diff --git a/protocols/plaintext/CHANGELOG.md b/protocols/plaintext/CHANGELOG.md index b950e2d7..162c798d 100644 --- a/protocols/plaintext/CHANGELOG.md +++ b/protocols/plaintext/CHANGELOG.md @@ -1,3 +1,7 @@ +# 0.22.0 [unreleased] + +- Bump `libp2p-core` dependency. + # 0.21.0 [2020-08-18] - Bump `libp2p-core` dependency. diff --git a/protocols/plaintext/Cargo.toml b/protocols/plaintext/Cargo.toml index 37fc94df..bf38685c 100644 --- a/protocols/plaintext/Cargo.toml +++ b/protocols/plaintext/Cargo.toml @@ -2,7 +2,7 @@ name = "libp2p-plaintext" edition = "2018" description = "Plaintext encryption dummy protocol for libp2p" -version = "0.21.0" +version = "0.22.0" authors = ["Parity Technologies "] license = "MIT" repository = "https://github.com/libp2p/rust-libp2p" @@ -13,7 +13,7 @@ categories = ["network-programming", "asynchronous"] bytes = "0.5" futures = "0.3.1" futures_codec = "0.4.0" -libp2p-core = { version = "0.21.0", path = "../../core" } +libp2p-core = { version = "0.22.0", path = "../../core" } log = "0.4.8" prost = "0.6.1" rw-stream-sink = "0.2.0" diff --git a/protocols/request-response/CHANGELOG.md b/protocols/request-response/CHANGELOG.md index 08da7e43..7986ca70 100644 --- a/protocols/request-response/CHANGELOG.md +++ b/protocols/request-response/CHANGELOG.md @@ -1,6 +1,6 @@ # 0.3.0 [unreleased] -- Update `libp2p-swarm`. +- Update `libp2p-swarm` and `libp2p-core`. # 0.2.0 [2020-08-18] diff --git a/protocols/request-response/Cargo.toml b/protocols/request-response/Cargo.toml index 79d88314..edd17db1 100644 --- a/protocols/request-response/Cargo.toml +++ b/protocols/request-response/Cargo.toml @@ -12,7 +12,7 @@ categories = ["network-programming", "asynchronous"] [dependencies] async-trait = "0.1" futures = "0.3.1" -libp2p-core = { version = "0.21.0", path = "../../core" } +libp2p-core = { version = "0.22.0", path = "../../core" } libp2p-swarm = { version = "0.22.0", path = "../../swarm" } log = "0.4.11" lru = "0.6" diff --git a/protocols/secio/CHANGELOG.md b/protocols/secio/CHANGELOG.md index 631df58e..afd6e4fd 100644 --- a/protocols/secio/CHANGELOG.md +++ b/protocols/secio/CHANGELOG.md @@ -1,3 +1,7 @@ +# 0.22.0 [unreleased] + +- Bump `libp2p-core` dependency. + # 0.21.0 [2020-08-18] - Bump `libp2p-core` dependency. diff --git a/protocols/secio/Cargo.toml b/protocols/secio/Cargo.toml index 857cc8f9..c5ec00b0 100644 --- a/protocols/secio/Cargo.toml +++ b/protocols/secio/Cargo.toml @@ -2,7 +2,7 @@ name = "libp2p-secio" edition = "2018" description = "Secio encryption protocol for libp2p" -version = "0.21.0" +version = "0.22.0" authors = ["Parity Technologies "] license = "MIT" repository = "https://github.com/libp2p/rust-libp2p" @@ -16,7 +16,7 @@ ctr = "0.3" futures = "0.3.1" hmac = "0.7.0" lazy_static = "1.2.0" -libp2p-core = { version = "0.21.0", path = "../../core" } +libp2p-core = { version = "0.22.0", path = "../../core" } log = "0.4.6" prost = "0.6.1" pin-project = "0.4.17" diff --git a/swarm/CHANGELOG.md b/swarm/CHANGELOG.md index 6cd730ab..8f614ffc 100644 --- a/swarm/CHANGELOG.md +++ b/swarm/CHANGELOG.md @@ -1,9 +1,12 @@ # 0.22.0 [unreleased] +- Bump `libp2p-core` dependency. + - Adds `ProtocolsHandler::InboundOpenInfo` type which mirrors the existing `OutboundOpenInfo` type. A value of this type is passed as an extra argument to `ProtocolsHandler::inject_fully_negotiated_inbound` and `ProtocolsHandler::inject_listen_upgrade_error`. + - `SubstreamProtocol` now has a second type parameter corresponding to inbound or outbound information, a value of which is part of `SubstreamProtocol` now. Consequently `ProtocolsHandlerEvent::OutboundSubstreamRequest` no longer diff --git a/swarm/Cargo.toml b/swarm/Cargo.toml index 1f4f3e60..d2246228 100644 --- a/swarm/Cargo.toml +++ b/swarm/Cargo.toml @@ -12,7 +12,7 @@ categories = ["network-programming", "asynchronous"] [dependencies] either = "1.6.0" futures = "0.3.1" -libp2p-core = { version = "0.21.0", path = "../core" } +libp2p-core = { version = "0.22.0", path = "../core" } log = "0.4" rand = "0.7" smallvec = "1.0" diff --git a/transports/dns/CHANGELOG.md b/transports/dns/CHANGELOG.md index 98f7bc91..23e74e52 100644 --- a/transports/dns/CHANGELOG.md +++ b/transports/dns/CHANGELOG.md @@ -1,3 +1,7 @@ +# 0.22.0 [unreleased] + +- Bump `libp2p-core` dependency. + # 0.21.0 [2020-08-18] - Bump `libp2p-core` dependency. diff --git a/transports/dns/Cargo.toml b/transports/dns/Cargo.toml index 5d4c38a3..0d658357 100644 --- a/transports/dns/Cargo.toml +++ b/transports/dns/Cargo.toml @@ -2,7 +2,7 @@ name = "libp2p-dns" edition = "2018" description = "DNS transport implementation for libp2p" -version = "0.21.0" +version = "0.22.0" authors = ["Parity Technologies "] license = "MIT" repository = "https://github.com/libp2p/rust-libp2p" @@ -10,6 +10,6 @@ keywords = ["peer-to-peer", "libp2p", "networking"] categories = ["network-programming", "asynchronous"] [dependencies] -libp2p-core = { version = "0.21.0", path = "../../core" } +libp2p-core = { version = "0.22.0", path = "../../core" } log = "0.4.1" futures = "0.3.1" diff --git a/transports/tcp/CHANGELOG.md b/transports/tcp/CHANGELOG.md index 1419b1ad..f344f660 100644 --- a/transports/tcp/CHANGELOG.md +++ b/transports/tcp/CHANGELOG.md @@ -1,3 +1,7 @@ +# 0.22.0 [unreleased] + +- Bump `libp2p-core` dependency. + # 0.21.0 [2020-08-18] - Bump `libp2p-core` dependency. diff --git a/transports/tcp/Cargo.toml b/transports/tcp/Cargo.toml index 6ddceb75..608810fb 100644 --- a/transports/tcp/Cargo.toml +++ b/transports/tcp/Cargo.toml @@ -2,7 +2,7 @@ name = "libp2p-tcp" edition = "2018" description = "TCP/IP transport protocol for libp2p" -version = "0.21.0" +version = "0.22.0" authors = ["Parity Technologies "] license = "MIT" repository = "https://github.com/libp2p/rust-libp2p" @@ -15,7 +15,7 @@ futures = "0.3.1" futures-timer = "3.0" get_if_addrs = "0.5.3" ipnet = "2.0.0" -libp2p-core = { version = "0.21.0", path = "../../core" } +libp2p-core = { version = "0.22.0", path = "../../core" } log = "0.4.1" socket2 = "0.3.12" tokio = { version = "0.2", default-features = false, features = ["tcp"], optional = true } diff --git a/transports/uds/CHANGELOG.md b/transports/uds/CHANGELOG.md index 3d03d2ca..dd26862c 100644 --- a/transports/uds/CHANGELOG.md +++ b/transports/uds/CHANGELOG.md @@ -1,3 +1,7 @@ +# 0.22.0 [unreleased] + +- Update `libp2p-core` dependency. + # 0.21.0 [2020-08-18] - Update `libp2p-core` dependency. diff --git a/transports/uds/Cargo.toml b/transports/uds/Cargo.toml index d61c7392..8e1b4e19 100644 --- a/transports/uds/Cargo.toml +++ b/transports/uds/Cargo.toml @@ -2,7 +2,7 @@ name = "libp2p-uds" edition = "2018" description = "Unix domain sockets transport for libp2p" -version = "0.21.0" +version = "0.22.0" authors = ["Parity Technologies "] license = "MIT" repository = "https://github.com/libp2p/rust-libp2p" @@ -11,7 +11,7 @@ categories = ["network-programming", "asynchronous"] [target.'cfg(all(unix, not(target_os = "emscripten")))'.dependencies] async-std = { version = "1.6.2", optional = true } -libp2p-core = { version = "0.21.0", path = "../../core" } +libp2p-core = { version = "0.22.0", path = "../../core" } log = "0.4.1" futures = "0.3.1" tokio = { version = "0.2", default-features = false, features = ["uds"], optional = true } diff --git a/transports/wasm-ext/CHANGELOG.md b/transports/wasm-ext/CHANGELOG.md index 79cd0e16..a601ae54 100644 --- a/transports/wasm-ext/CHANGELOG.md +++ b/transports/wasm-ext/CHANGELOG.md @@ -1,3 +1,7 @@ +# 0.22.0 [unreleased] + +- Update `libp2p-core` dependency. + # 0.21.0 [2020-08-18] - Update `libp2p-core` dependency. diff --git a/transports/wasm-ext/Cargo.toml b/transports/wasm-ext/Cargo.toml index 22c18dd7..5bc2ddcd 100644 --- a/transports/wasm-ext/Cargo.toml +++ b/transports/wasm-ext/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "libp2p-wasm-ext" -version = "0.21.0" +version = "0.22.0" authors = ["Pierre Krieger "] edition = "2018" description = "Allows passing in an external transport in a WASM environment" @@ -12,7 +12,7 @@ categories = ["network-programming", "asynchronous"] [dependencies] futures = "0.3.1" js-sys = "0.3.19" -libp2p-core = { version = "0.21.0", path = "../../core" } +libp2p-core = { version = "0.22.0", path = "../../core" } parity-send-wrapper = "0.1.0" wasm-bindgen = "0.2.42" wasm-bindgen-futures = "0.4.4" diff --git a/transports/websocket/CHANGELOG.md b/transports/websocket/CHANGELOG.md index d51d12f1..a05948c0 100644 --- a/transports/websocket/CHANGELOG.md +++ b/transports/websocket/CHANGELOG.md @@ -1,3 +1,7 @@ +# 0.23.0 [unreleased] + +- Bump `libp2p-core` dependency. + # 0.22.0 [2020-08-18] - Bump `libp2p-core` dependency. diff --git a/transports/websocket/Cargo.toml b/transports/websocket/Cargo.toml index e937631e..c3d3a295 100644 --- a/transports/websocket/Cargo.toml +++ b/transports/websocket/Cargo.toml @@ -2,7 +2,7 @@ name = "libp2p-websocket" edition = "2018" description = "WebSocket transport for libp2p" -version = "0.22.0" +version = "0.23.0" authors = ["Parity Technologies "] license = "MIT" repository = "https://github.com/libp2p/rust-libp2p" @@ -13,7 +13,7 @@ categories = ["network-programming", "asynchronous"] async-tls = "0.8.0" either = "1.5.3" futures = "0.3.1" -libp2p-core = { version = "0.21.0", path = "../../core" } +libp2p-core = { version = "0.22.0", path = "../../core" } log = "0.4.8" quicksink = "0.1" rustls = "0.18.0"