From 7e3c2fe0884deecb56f2f346a4e23f4e43f6e80b Mon Sep 17 00:00:00 2001 From: Thomas Eizinger Date: Fri, 20 Oct 2023 11:06:17 +1100 Subject: [PATCH] chore: open merge window for next breaking release (#4685) --- Cargo.lock | 70 +++++++++---------- Cargo.toml | 70 +++++++++---------- core/Cargo.toml | 2 +- examples/autonat/Cargo.toml | 3 + examples/browser-webrtc/Cargo.toml | 3 + examples/chat/Cargo.toml | 3 + examples/dcutr/Cargo.toml | 3 + .../distributed-key-value-store/Cargo.toml | 3 + examples/file-sharing/Cargo.toml | 3 + examples/identify/Cargo.toml | 3 + examples/ipfs-kad/Cargo.toml | 3 + examples/ipfs-private/Cargo.toml | 3 + examples/metrics/Cargo.toml | 3 + examples/ping/Cargo.toml | 3 + examples/relay-server/Cargo.toml | 3 + examples/rendezvous/Cargo.toml | 3 + examples/upnp/Cargo.toml | 3 + interop-tests/Cargo.toml | 3 + libp2p/Cargo.toml | 2 +- misc/allow-block-list/Cargo.toml | 2 +- misc/connection-limits/Cargo.toml | 2 +- misc/keygen/Cargo.toml | 3 + misc/memory-connection-limits/Cargo.toml | 2 +- misc/metrics/Cargo.toml | 2 +- misc/quickcheck-ext/Cargo.toml | 3 + muxers/mplex/Cargo.toml | 2 +- muxers/test-harness/Cargo.toml | 3 + muxers/yamux/Cargo.toml | 2 +- protocols/autonat/Cargo.toml | 2 +- protocols/dcutr/Cargo.toml | 2 +- protocols/floodsub/Cargo.toml | 2 +- protocols/gossipsub/Cargo.toml | 2 +- protocols/identify/Cargo.toml | 2 +- protocols/kad/Cargo.toml | 2 +- protocols/mdns/Cargo.toml | 2 +- protocols/ping/Cargo.toml | 2 +- protocols/relay/Cargo.toml | 2 +- protocols/rendezvous/Cargo.toml | 2 +- protocols/request-response/Cargo.toml | 2 +- protocols/upnp/Cargo.toml | 2 +- swarm-derive/Cargo.toml | 2 +- swarm-test/Cargo.toml | 2 +- swarm/Cargo.toml | 2 +- transports/deflate/Cargo.toml | 2 +- transports/dns/Cargo.toml | 2 +- transports/noise/Cargo.toml | 2 +- transports/plaintext/Cargo.toml | 2 +- transports/pnet/Cargo.toml | 2 +- transports/quic/Cargo.toml | 2 +- transports/tcp/Cargo.toml | 2 +- transports/tls/Cargo.toml | 2 +- transports/uds/Cargo.toml | 2 +- transports/websocket-websys/Cargo.toml | 2 +- transports/websocket/Cargo.toml | 2 +- transports/webtransport-websys/Cargo.toml | 2 +- wasm-tests/webtransport-tests/Cargo.toml | 3 + 56 files changed, 162 insertions(+), 105 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index e53f40ecdb4..112df8b4219 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -2349,7 +2349,7 @@ checksum = "a08173bc88b7955d1b3145aa561539096c421ac8debde8cbc3612ec635fee29b" [[package]] name = "libp2p" -version = "0.52.4" +version = "0.53.0" dependencies = [ "async-std", "async-trait", @@ -2404,7 +2404,7 @@ dependencies = [ [[package]] name = "libp2p-allow-block-list" -version = "0.2.0" +version = "0.3.0" dependencies = [ "async-std", "libp2p-core", @@ -2417,7 +2417,7 @@ dependencies = [ [[package]] name = "libp2p-autonat" -version = "0.11.0" +version = "0.12.0" dependencies = [ "async-std", "async-trait", @@ -2437,7 +2437,7 @@ dependencies = [ [[package]] name = "libp2p-connection-limits" -version = "0.2.1" +version = "0.3.0" dependencies = [ "async-std", "libp2p-core", @@ -2454,7 +2454,7 @@ dependencies = [ [[package]] name = "libp2p-core" -version = "0.40.1" +version = "0.41.0" dependencies = [ "async-std", "either", @@ -2485,7 +2485,7 @@ dependencies = [ [[package]] name = "libp2p-dcutr" -version = "0.10.0" +version = "0.11.0" dependencies = [ "async-std", "asynchronous-codec", @@ -2517,7 +2517,7 @@ dependencies = [ [[package]] name = "libp2p-deflate" -version = "0.40.1" +version = "0.41.0" dependencies = [ "async-std", "flate2", @@ -2531,7 +2531,7 @@ dependencies = [ [[package]] name = "libp2p-dns" -version = "0.40.1" +version = "0.41.0" dependencies = [ "async-std", "async-std-resolver", @@ -2549,7 +2549,7 @@ dependencies = [ [[package]] name = "libp2p-floodsub" -version = "0.43.0" +version = "0.44.0" dependencies = [ "asynchronous-codec", "cuckoofilter", @@ -2568,7 +2568,7 @@ dependencies = [ [[package]] name = "libp2p-gossipsub" -version = "0.45.2" +version = "0.46.0" dependencies = [ "async-std", "asynchronous-codec", @@ -2606,7 +2606,7 @@ dependencies = [ [[package]] name = "libp2p-identify" -version = "0.43.1" +version = "0.44.0" dependencies = [ "async-std", "asynchronous-codec", @@ -2659,7 +2659,7 @@ dependencies = [ [[package]] name = "libp2p-kad" -version = "0.44.6" +version = "0.45.0" dependencies = [ "arrayvec", "async-std", @@ -2694,7 +2694,7 @@ dependencies = [ [[package]] name = "libp2p-mdns" -version = "0.44.0" +version = "0.45.0" dependencies = [ "async-io", "async-std", @@ -2720,7 +2720,7 @@ dependencies = [ [[package]] name = "libp2p-memory-connection-limits" -version = "0.1.0" +version = "0.2.0" dependencies = [ "async-std", "libp2p-core", @@ -2738,7 +2738,7 @@ dependencies = [ [[package]] name = "libp2p-metrics" -version = "0.13.1" +version = "0.14.0" dependencies = [ "instant", "libp2p-core", @@ -2756,7 +2756,7 @@ dependencies = [ [[package]] name = "libp2p-mplex" -version = "0.40.0" +version = "0.41.0" dependencies = [ "async-std", "asynchronous-codec", @@ -2791,7 +2791,7 @@ dependencies = [ [[package]] name = "libp2p-noise" -version = "0.43.2" +version = "0.44.0" dependencies = [ "bytes", "curve25519-dalek", @@ -2846,7 +2846,7 @@ dependencies = [ [[package]] name = "libp2p-ping" -version = "0.43.1" +version = "0.44.0" dependencies = [ "async-std", "either", @@ -2866,7 +2866,7 @@ dependencies = [ [[package]] name = "libp2p-plaintext" -version = "0.40.1" +version = "0.41.0" dependencies = [ "asynchronous-codec", "bytes", @@ -2884,7 +2884,7 @@ dependencies = [ [[package]] name = "libp2p-pnet" -version = "0.23.1" +version = "0.24.0" dependencies = [ "futures", "libp2p-core", @@ -2905,7 +2905,7 @@ dependencies = [ [[package]] name = "libp2p-quic" -version = "0.9.3" +version = "0.10.0" dependencies = [ "async-std", "bytes", @@ -2934,7 +2934,7 @@ dependencies = [ [[package]] name = "libp2p-relay" -version = "0.16.2" +version = "0.17.0" dependencies = [ "asynchronous-codec", "bytes", @@ -2962,7 +2962,7 @@ dependencies = [ [[package]] name = "libp2p-rendezvous" -version = "0.13.1" +version = "0.14.0" dependencies = [ "async-trait", "asynchronous-codec", @@ -2992,7 +2992,7 @@ dependencies = [ [[package]] name = "libp2p-request-response" -version = "0.25.2" +version = "0.26.0" dependencies = [ "async-std", "async-trait", @@ -3038,7 +3038,7 @@ dependencies = [ [[package]] name = "libp2p-swarm" -version = "0.43.6" +version = "0.44.0" dependencies = [ "async-std", "either", @@ -3071,7 +3071,7 @@ dependencies = [ [[package]] name = "libp2p-swarm-derive" -version = "0.33.0" +version = "0.34.0" dependencies = [ "heck", "proc-macro-warning", @@ -3082,7 +3082,7 @@ dependencies = [ [[package]] name = "libp2p-swarm-test" -version = "0.2.0" +version = "0.3.0" dependencies = [ "async-trait", "futures", @@ -3099,7 +3099,7 @@ dependencies = [ [[package]] name = "libp2p-tcp" -version = "0.40.1" +version = "0.41.0" dependencies = [ "async-io", "async-std", @@ -3117,7 +3117,7 @@ dependencies = [ [[package]] name = "libp2p-tls" -version = "0.2.1" +version = "0.3.0" dependencies = [ "futures", "futures-rustls", @@ -3139,7 +3139,7 @@ dependencies = [ [[package]] name = "libp2p-uds" -version = "0.39.0" +version = "0.40.0" dependencies = [ "async-std", "futures", @@ -3151,7 +3151,7 @@ dependencies = [ [[package]] name = "libp2p-upnp" -version = "0.1.1" +version = "0.2.0" dependencies = [ "futures", "futures-timer", @@ -3255,7 +3255,7 @@ dependencies = [ [[package]] name = "libp2p-websocket" -version = "0.42.1" +version = "0.43.0" dependencies = [ "async-std", "either", @@ -3277,7 +3277,7 @@ dependencies = [ [[package]] name = "libp2p-websocket-websys" -version = "0.2.0" +version = "0.3.0" dependencies = [ "bytes", "futures", @@ -3296,7 +3296,7 @@ dependencies = [ [[package]] name = "libp2p-webtransport-websys" -version = "0.1.0" +version = "0.2.0" dependencies = [ "futures", "js-sys", @@ -3316,7 +3316,7 @@ dependencies = [ [[package]] name = "libp2p-yamux" -version = "0.44.1" +version = "0.45.0" dependencies = [ "async-std", "futures", diff --git a/Cargo.toml b/Cargo.toml index 7194347e1e6..c2c92d751af 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -72,49 +72,49 @@ rust-version = "1.65.0" [workspace.dependencies] futures-bounded = { version = "0.1.0", path = "misc/futures-bounded" } -libp2p = { version = "0.52.4", path = "libp2p" } -libp2p-allow-block-list = { version = "0.2.0", path = "misc/allow-block-list" } -libp2p-autonat = { version = "0.11.0", path = "protocols/autonat" } -libp2p-connection-limits = { version = "0.2.1", path = "misc/connection-limits" } -libp2p-core = { version = "0.40.1", path = "core" } -libp2p-dcutr = { version = "0.10.0", path = "protocols/dcutr" } -libp2p-deflate = { version = "0.40.1", path = "transports/deflate" } -libp2p-dns = { version = "0.40.1", path = "transports/dns" } -libp2p-floodsub = { version = "0.43.0", path = "protocols/floodsub" } -libp2p-gossipsub = { version = "0.45.2", path = "protocols/gossipsub" } -libp2p-identify = { version = "0.43.1", path = "protocols/identify" } +libp2p = { version = "0.53.0", path = "libp2p" } +libp2p-allow-block-list = { version = "0.3.0", path = "misc/allow-block-list" } +libp2p-autonat = { version = "0.12.0", path = "protocols/autonat" } +libp2p-connection-limits = { version = "0.3.0", path = "misc/connection-limits" } +libp2p-core = { version = "0.41.0", path = "core" } +libp2p-dcutr = { version = "0.11.0", path = "protocols/dcutr" } +libp2p-deflate = { version = "0.41.0", path = "transports/deflate" } +libp2p-dns = { version = "0.41.0", path = "transports/dns" } +libp2p-floodsub = { version = "0.44.0", path = "protocols/floodsub" } +libp2p-gossipsub = { version = "0.46.0", path = "protocols/gossipsub" } +libp2p-identify = { version = "0.44.0", path = "protocols/identify" } libp2p-identity = { version = "0.2.7" } -libp2p-kad = { version = "0.44.6", path = "protocols/kad" } -libp2p-mdns = { version = "0.44.0", path = "protocols/mdns" } -libp2p-memory-connection-limits = { version = "0.1.0", path = "misc/memory-connection-limits" } -libp2p-metrics = { version = "0.13.1", path = "misc/metrics" } -libp2p-mplex = { version = "0.40.0", path = "muxers/mplex" } +libp2p-kad = { version = "0.45.0", path = "protocols/kad" } +libp2p-mdns = { version = "0.45.0", path = "protocols/mdns" } +libp2p-memory-connection-limits = { version = "0.2.0", path = "misc/memory-connection-limits" } +libp2p-metrics = { version = "0.14.0", path = "misc/metrics" } +libp2p-mplex = { version = "0.41.0", path = "muxers/mplex" } libp2p-muxer-test-harness = { path = "muxers/test-harness" } -libp2p-noise = { version = "0.43.2", path = "transports/noise" } +libp2p-noise = { version = "0.44.0", path = "transports/noise" } libp2p-perf = { version = "0.2.0", path = "protocols/perf" } -libp2p-ping = { version = "0.43.1", path = "protocols/ping" } -libp2p-plaintext = { version = "0.40.1", path = "transports/plaintext" } -libp2p-pnet = { version = "0.23.1", path = "transports/pnet" } -libp2p-quic = { version = "0.9.3", path = "transports/quic" } -libp2p-relay = { version = "0.16.2", path = "protocols/relay" } -libp2p-rendezvous = { version = "0.13.1", path = "protocols/rendezvous" } -libp2p-upnp = { version = "0.1.1", path = "protocols/upnp" } -libp2p-request-response = { version = "0.25.2", path = "protocols/request-response" } +libp2p-ping = { version = "0.44.0", path = "protocols/ping" } +libp2p-plaintext = { version = "0.41.0", path = "transports/plaintext" } +libp2p-pnet = { version = "0.24.0", path = "transports/pnet" } +libp2p-quic = { version = "0.10.0", path = "transports/quic" } +libp2p-relay = { version = "0.17.0", path = "protocols/relay" } +libp2p-rendezvous = { version = "0.14.0", path = "protocols/rendezvous" } +libp2p-upnp = { version = "0.2.0", path = "protocols/upnp" } +libp2p-request-response = { version = "0.26.0", path = "protocols/request-response" } libp2p-server = { version = "0.12.3", path = "misc/server" } -libp2p-swarm = { version = "0.43.6", path = "swarm" } -libp2p-swarm-derive = { version = "0.33.0", path = "swarm-derive" } -libp2p-swarm-test = { version = "0.2.0", path = "swarm-test" } -libp2p-tcp = { version = "0.40.1", path = "transports/tcp" } -libp2p-tls = { version = "0.2.1", path = "transports/tls" } -libp2p-uds = { version = "0.39.0", path = "transports/uds" } +libp2p-swarm = { version = "0.44.0", path = "swarm" } +libp2p-swarm-derive = { version = "0.34.0", path = "swarm-derive" } +libp2p-swarm-test = { version = "0.3.0", path = "swarm-test" } +libp2p-tcp = { version = "0.41.0", path = "transports/tcp" } +libp2p-tls = { version = "0.3.0", path = "transports/tls" } +libp2p-uds = { version = "0.40.0", path = "transports/uds" } libp2p-wasm-ext = { version = "0.40.0", path = "transports/wasm-ext" } libp2p-webrtc = { version = "0.6.1-alpha", path = "transports/webrtc" } libp2p-webrtc-utils = { version = "0.1.0", path = "misc/webrtc-utils" } libp2p-webrtc-websys = { version = "0.2.0-alpha", path = "transports/webrtc-websys" } -libp2p-websocket = { version = "0.42.1", path = "transports/websocket" } -libp2p-websocket-websys = { version = "0.2.0", path = "transports/websocket-websys" } -libp2p-webtransport-websys = { version = "0.1.0", path = "transports/webtransport-websys" } -libp2p-yamux = { version = "0.44.1", path = "muxers/yamux" } +libp2p-websocket = { version = "0.43.0", path = "transports/websocket" } +libp2p-websocket-websys = { version = "0.3.0", path = "transports/websocket-websys" } +libp2p-webtransport-websys = { version = "0.2.0", path = "transports/webtransport-websys" } +libp2p-yamux = { version = "0.45.0", path = "muxers/yamux" } multistream-select = { version = "0.13.0", path = "misc/multistream-select" } quick-protobuf-codec = { version = "0.2.0", path = "misc/quick-protobuf-codec" } quickcheck = { package = "quickcheck-ext", path = "misc/quickcheck-ext" } diff --git a/core/Cargo.toml b/core/Cargo.toml index b1fd644f379..7347fd98ca2 100644 --- a/core/Cargo.toml +++ b/core/Cargo.toml @@ -3,7 +3,7 @@ name = "libp2p-core" edition = "2021" rust-version = { workspace = true } description = "Core traits and structs of libp2p" -version = "0.40.1" +version = "0.41.0" authors = ["Parity Technologies "] license = "MIT" repository = "https://github.com/libp2p/rust-libp2p" diff --git a/examples/autonat/Cargo.toml b/examples/autonat/Cargo.toml index f720b191e68..e61a31bcd85 100644 --- a/examples/autonat/Cargo.toml +++ b/examples/autonat/Cargo.toml @@ -5,6 +5,9 @@ edition = "2021" publish = false license = "MIT" +[package.metadata.release] +release = false + [dependencies] tokio = { version = "1.33", features = ["full"] } clap = { version = "4.3.23", features = ["derive"] } diff --git a/examples/browser-webrtc/Cargo.toml b/examples/browser-webrtc/Cargo.toml index eed983a3ca8..dfd0d5bf7c7 100644 --- a/examples/browser-webrtc/Cargo.toml +++ b/examples/browser-webrtc/Cargo.toml @@ -9,6 +9,9 @@ repository = "https://github.com/libp2p/rust-libp2p" rust-version = { workspace = true } version = "0.1.0" +[package.metadata.release] +release = false + [lib] crate-type = ["cdylib"] diff --git a/examples/chat/Cargo.toml b/examples/chat/Cargo.toml index ee82c6dccbe..9889fbc7ee4 100644 --- a/examples/chat/Cargo.toml +++ b/examples/chat/Cargo.toml @@ -5,6 +5,9 @@ edition = "2021" publish = false license = "MIT" +[package.metadata.release] +release = false + [dependencies] tokio = { version = "1.33", features = ["full"] } async-trait = "0.1" diff --git a/examples/dcutr/Cargo.toml b/examples/dcutr/Cargo.toml index 7c35fefcaf9..56a0ef1eca1 100644 --- a/examples/dcutr/Cargo.toml +++ b/examples/dcutr/Cargo.toml @@ -5,6 +5,9 @@ edition = "2021" publish = false license = "MIT" +[package.metadata.release] +release = false + [dependencies] clap = { version = "4.3.23", features = ["derive"] } env_logger = "0.10.0" diff --git a/examples/distributed-key-value-store/Cargo.toml b/examples/distributed-key-value-store/Cargo.toml index fd1f92dc410..123fbc1b3fc 100644 --- a/examples/distributed-key-value-store/Cargo.toml +++ b/examples/distributed-key-value-store/Cargo.toml @@ -5,6 +5,9 @@ edition = "2021" publish = false license = "MIT" +[package.metadata.release] +release = false + [dependencies] async-std = { version = "1.12", features = ["attributes"] } async-trait = "0.1" diff --git a/examples/file-sharing/Cargo.toml b/examples/file-sharing/Cargo.toml index 90462790c11..f64fc504700 100644 --- a/examples/file-sharing/Cargo.toml +++ b/examples/file-sharing/Cargo.toml @@ -5,6 +5,9 @@ edition = "2021" publish = false license = "MIT" +[package.metadata.release] +release = false + [dependencies] serde = { version = "1.0", features = ["derive"] } async-std = { version = "1.12", features = ["attributes"] } diff --git a/examples/identify/Cargo.toml b/examples/identify/Cargo.toml index cc30a0c614c..e0d21590bb4 100644 --- a/examples/identify/Cargo.toml +++ b/examples/identify/Cargo.toml @@ -5,6 +5,9 @@ edition = "2021" publish = false license = "MIT" +[package.metadata.release] +release = false + [dependencies] async-std = { version = "1.12", features = ["attributes"] } async-trait = "0.1" diff --git a/examples/ipfs-kad/Cargo.toml b/examples/ipfs-kad/Cargo.toml index 075d80754c1..e619a72a551 100644 --- a/examples/ipfs-kad/Cargo.toml +++ b/examples/ipfs-kad/Cargo.toml @@ -5,6 +5,9 @@ edition = "2021" publish = false license = "MIT" +[package.metadata.release] +release = false + [dependencies] tokio = { version = "1.33", features = ["rt-multi-thread", "macros"] } async-trait = "0.1" diff --git a/examples/ipfs-private/Cargo.toml b/examples/ipfs-private/Cargo.toml index a042212b2d4..e9cccce7c60 100644 --- a/examples/ipfs-private/Cargo.toml +++ b/examples/ipfs-private/Cargo.toml @@ -5,6 +5,9 @@ edition = "2021" publish = false license = "MIT" +[package.metadata.release] +release = false + [dependencies] tokio = { version = "1.33", features = ["rt-multi-thread", "macros", "io-std"] } async-trait = "0.1" diff --git a/examples/metrics/Cargo.toml b/examples/metrics/Cargo.toml index 8cf7e1fc406..239e88bd424 100644 --- a/examples/metrics/Cargo.toml +++ b/examples/metrics/Cargo.toml @@ -5,6 +5,9 @@ edition = "2021" publish = false license = "MIT" +[package.metadata.release] +release = false + [dependencies] env_logger = "0.10.0" futures = "0.3.27" diff --git a/examples/ping/Cargo.toml b/examples/ping/Cargo.toml index 04a6073f363..3b45b0b9115 100644 --- a/examples/ping/Cargo.toml +++ b/examples/ping/Cargo.toml @@ -5,6 +5,9 @@ edition = "2021" publish = false license = "MIT" +[package.metadata.release] +release = false + [dependencies] env_logger = "0.10.0" futures = "0.3.28" diff --git a/examples/relay-server/Cargo.toml b/examples/relay-server/Cargo.toml index 39d899f5573..275038f75df 100644 --- a/examples/relay-server/Cargo.toml +++ b/examples/relay-server/Cargo.toml @@ -5,6 +5,9 @@ edition = "2021" publish = false license = "MIT" +[package.metadata.release] +release = false + [dependencies] clap = { version = "4.3.23", features = ["derive"] } async-std = { version = "1.12", features = ["attributes"] } diff --git a/examples/rendezvous/Cargo.toml b/examples/rendezvous/Cargo.toml index 45ffc4e170a..fa5125dded1 100644 --- a/examples/rendezvous/Cargo.toml +++ b/examples/rendezvous/Cargo.toml @@ -5,6 +5,9 @@ edition = "2021" publish = false license = "MIT" +[package.metadata.release] +release = false + [dependencies] async-std = { version = "1.12", features = ["attributes"] } async-trait = "0.1" diff --git a/examples/upnp/Cargo.toml b/examples/upnp/Cargo.toml index dc55507a021..a7beb8378d3 100644 --- a/examples/upnp/Cargo.toml +++ b/examples/upnp/Cargo.toml @@ -5,6 +5,9 @@ edition = "2021" publish = false license = "MIT" +[package.metadata.release] +release = false + [dependencies] tokio = { version = "1", features = ["rt-multi-thread", "macros"] } futures = "0.3.28" diff --git a/interop-tests/Cargo.toml b/interop-tests/Cargo.toml index 2383499b835..b10fed0ae49 100644 --- a/interop-tests/Cargo.toml +++ b/interop-tests/Cargo.toml @@ -5,6 +5,9 @@ version = "0.1.0" publish = false license = "MIT" +[package.metadata.release] +release = false + [lib] crate-type = ["cdylib", "rlib"] diff --git a/libp2p/Cargo.toml b/libp2p/Cargo.toml index 0e142261f46..a576409c81a 100644 --- a/libp2p/Cargo.toml +++ b/libp2p/Cargo.toml @@ -3,7 +3,7 @@ name = "libp2p" edition = "2021" rust-version = { workspace = true } description = "Peer-to-peer networking library" -version = "0.52.4" +version = "0.53.0" authors = ["Parity Technologies "] license = "MIT" repository = "https://github.com/libp2p/rust-libp2p" diff --git a/misc/allow-block-list/Cargo.toml b/misc/allow-block-list/Cargo.toml index 84125f0c0a7..c620e7f4a2b 100644 --- a/misc/allow-block-list/Cargo.toml +++ b/misc/allow-block-list/Cargo.toml @@ -3,7 +3,7 @@ name = "libp2p-allow-block-list" edition = "2021" rust-version = { workspace = true } description = "Allow/block list connection management for libp2p." -version = "0.2.0" +version = "0.3.0" license = "MIT" repository = "https://github.com/libp2p/rust-libp2p" keywords = ["peer-to-peer", "libp2p", "networking"] diff --git a/misc/connection-limits/Cargo.toml b/misc/connection-limits/Cargo.toml index 1ba551470a0..2aa26ad44f1 100644 --- a/misc/connection-limits/Cargo.toml +++ b/misc/connection-limits/Cargo.toml @@ -3,7 +3,7 @@ name = "libp2p-connection-limits" edition = "2021" rust-version = { workspace = true } description = "Connection limits for libp2p." -version = "0.2.1" +version = "0.3.0" license = "MIT" repository = "https://github.com/libp2p/rust-libp2p" keywords = ["peer-to-peer", "libp2p", "networking"] diff --git a/misc/keygen/Cargo.toml b/misc/keygen/Cargo.toml index 4ef663c4c9c..91092d9920e 100644 --- a/misc/keygen/Cargo.toml +++ b/misc/keygen/Cargo.toml @@ -9,6 +9,9 @@ keywords = ["peer-to-peer", "libp2p", "networking"] categories = ["network-programming", "asynchronous"] publish = false +[package.metadata.release] +release = false + [dependencies] clap = { version = "4.3.23", features = ["derive"] } zeroize = "1" diff --git a/misc/memory-connection-limits/Cargo.toml b/misc/memory-connection-limits/Cargo.toml index eb65d26ac66..bf2a0384570 100644 --- a/misc/memory-connection-limits/Cargo.toml +++ b/misc/memory-connection-limits/Cargo.toml @@ -3,7 +3,7 @@ name = "libp2p-memory-connection-limits" edition = "2021" rust-version = { workspace = true } description = "Memory usage based connection limits for libp2p." -version = "0.1.0" +version = "0.2.0" license = "MIT" repository = "https://github.com/libp2p/rust-libp2p" keywords = ["peer-to-peer", "libp2p", "networking"] diff --git a/misc/metrics/Cargo.toml b/misc/metrics/Cargo.toml index 661774dcc8f..3f2845dafb8 100644 --- a/misc/metrics/Cargo.toml +++ b/misc/metrics/Cargo.toml @@ -3,7 +3,7 @@ name = "libp2p-metrics" edition = "2021" rust-version = { workspace = true } description = "Metrics for libp2p" -version = "0.13.1" +version = "0.14.0" authors = ["Max Inden "] license = "MIT" repository = "https://github.com/libp2p/rust-libp2p" diff --git a/misc/quickcheck-ext/Cargo.toml b/misc/quickcheck-ext/Cargo.toml index 65e45e47ab8..9fe3cbf25c1 100644 --- a/misc/quickcheck-ext/Cargo.toml +++ b/misc/quickcheck-ext/Cargo.toml @@ -5,6 +5,9 @@ edition = "2021" publish = false license = "Unlicense/MIT" +[package.metadata.release] +release = false + [dependencies] quickcheck = "1" num-traits = "0.2" diff --git a/muxers/mplex/Cargo.toml b/muxers/mplex/Cargo.toml index 4501546adc1..c57df26f8ec 100644 --- a/muxers/mplex/Cargo.toml +++ b/muxers/mplex/Cargo.toml @@ -3,7 +3,7 @@ name = "libp2p-mplex" edition = "2021" rust-version = { workspace = true } description = "Mplex multiplexing protocol for libp2p" -version = "0.40.0" +version = "0.41.0" authors = ["Parity Technologies "] license = "MIT" repository = "https://github.com/libp2p/rust-libp2p" diff --git a/muxers/test-harness/Cargo.toml b/muxers/test-harness/Cargo.toml index 5304509b9cc..59a047d8daf 100644 --- a/muxers/test-harness/Cargo.toml +++ b/muxers/test-harness/Cargo.toml @@ -5,6 +5,9 @@ edition = "2021" publish = false license = "MIT" +[package.metadata.release] +release = false + # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html [dependencies] diff --git a/muxers/yamux/Cargo.toml b/muxers/yamux/Cargo.toml index 3073c040ff3..e9e62238f6f 100644 --- a/muxers/yamux/Cargo.toml +++ b/muxers/yamux/Cargo.toml @@ -3,7 +3,7 @@ name = "libp2p-yamux" edition = "2021" rust-version = { workspace = true } description = "Yamux multiplexing protocol for libp2p" -version = "0.44.1" +version = "0.45.0" authors = ["Parity Technologies "] license = "MIT" repository = "https://github.com/libp2p/rust-libp2p" diff --git a/protocols/autonat/Cargo.toml b/protocols/autonat/Cargo.toml index 3b81d62b516..e3b4ed4a120 100644 --- a/protocols/autonat/Cargo.toml +++ b/protocols/autonat/Cargo.toml @@ -3,7 +3,7 @@ name = "libp2p-autonat" edition = "2021" rust-version = { workspace = true } description = "NAT and firewall detection for libp2p" -version = "0.11.0" +version = "0.12.0" authors = ["David Craven ", "Elena Frank "] license = "MIT" repository = "https://github.com/libp2p/rust-libp2p" diff --git a/protocols/dcutr/Cargo.toml b/protocols/dcutr/Cargo.toml index f12684816c6..1cd82ca1b60 100644 --- a/protocols/dcutr/Cargo.toml +++ b/protocols/dcutr/Cargo.toml @@ -3,7 +3,7 @@ name = "libp2p-dcutr" edition = "2021" rust-version = { workspace = true } description = "Direct connection upgrade through relay" -version = "0.10.0" +version = "0.11.0" authors = ["Max Inden "] license = "MIT" repository = "https://github.com/libp2p/rust-libp2p" diff --git a/protocols/floodsub/Cargo.toml b/protocols/floodsub/Cargo.toml index dfa9ad63bd2..ace2c5cbaf8 100644 --- a/protocols/floodsub/Cargo.toml +++ b/protocols/floodsub/Cargo.toml @@ -3,7 +3,7 @@ name = "libp2p-floodsub" edition = "2021" rust-version = { workspace = true } description = "Floodsub protocol for libp2p" -version = "0.43.0" +version = "0.44.0" authors = ["Parity Technologies "] license = "MIT" repository = "https://github.com/libp2p/rust-libp2p" diff --git a/protocols/gossipsub/Cargo.toml b/protocols/gossipsub/Cargo.toml index 941efc47aea..d3f715676ed 100644 --- a/protocols/gossipsub/Cargo.toml +++ b/protocols/gossipsub/Cargo.toml @@ -3,7 +3,7 @@ name = "libp2p-gossipsub" edition = "2021" rust-version = { workspace = true } description = "Gossipsub protocol for libp2p" -version = "0.45.2" +version = "0.46.0" authors = ["Age Manning "] license = "MIT" repository = "https://github.com/libp2p/rust-libp2p" diff --git a/protocols/identify/Cargo.toml b/protocols/identify/Cargo.toml index 43421811c5d..ba285771f4f 100644 --- a/protocols/identify/Cargo.toml +++ b/protocols/identify/Cargo.toml @@ -3,7 +3,7 @@ name = "libp2p-identify" edition = "2021" rust-version = { workspace = true } description = "Nodes identifcation protocol for libp2p" -version = "0.43.1" +version = "0.44.0" authors = ["Parity Technologies "] license = "MIT" repository = "https://github.com/libp2p/rust-libp2p" diff --git a/protocols/kad/Cargo.toml b/protocols/kad/Cargo.toml index 7e8b67b7cc2..48916fd5881 100644 --- a/protocols/kad/Cargo.toml +++ b/protocols/kad/Cargo.toml @@ -3,7 +3,7 @@ name = "libp2p-kad" edition = "2021" rust-version = { workspace = true } description = "Kademlia protocol for libp2p" -version = "0.44.6" +version = "0.45.0" authors = ["Parity Technologies "] license = "MIT" repository = "https://github.com/libp2p/rust-libp2p" diff --git a/protocols/mdns/Cargo.toml b/protocols/mdns/Cargo.toml index 7ddf4e3e179..b4a285448da 100644 --- a/protocols/mdns/Cargo.toml +++ b/protocols/mdns/Cargo.toml @@ -2,7 +2,7 @@ name = "libp2p-mdns" edition = "2021" rust-version = { workspace = true } -version = "0.44.0" +version = "0.45.0" description = "Implementation of the libp2p mDNS discovery method" authors = ["Parity Technologies "] license = "MIT" diff --git a/protocols/ping/Cargo.toml b/protocols/ping/Cargo.toml index a15407b2840..501007159d5 100644 --- a/protocols/ping/Cargo.toml +++ b/protocols/ping/Cargo.toml @@ -3,7 +3,7 @@ name = "libp2p-ping" edition = "2021" rust-version = { workspace = true } description = "Ping protocol for libp2p" -version = "0.43.1" +version = "0.44.0" authors = ["Parity Technologies "] license = "MIT" repository = "https://github.com/libp2p/rust-libp2p" diff --git a/protocols/relay/Cargo.toml b/protocols/relay/Cargo.toml index 3d01a6af09c..f42782dadef 100644 --- a/protocols/relay/Cargo.toml +++ b/protocols/relay/Cargo.toml @@ -3,7 +3,7 @@ name = "libp2p-relay" edition = "2021" rust-version = { workspace = true } description = "Communications relaying for libp2p" -version = "0.16.2" +version = "0.17.0" authors = ["Parity Technologies ", "Max Inden "] license = "MIT" repository = "https://github.com/libp2p/rust-libp2p" diff --git a/protocols/rendezvous/Cargo.toml b/protocols/rendezvous/Cargo.toml index 0225f915346..a56cf737656 100644 --- a/protocols/rendezvous/Cargo.toml +++ b/protocols/rendezvous/Cargo.toml @@ -3,7 +3,7 @@ name = "libp2p-rendezvous" edition = "2021" rust-version = { workspace = true } description = "Rendezvous protocol for libp2p" -version = "0.13.1" +version = "0.14.0" authors = ["The COMIT guys "] license = "MIT" repository = "https://github.com/libp2p/rust-libp2p" diff --git a/protocols/request-response/Cargo.toml b/protocols/request-response/Cargo.toml index ee1049a96e3..823c7f49656 100644 --- a/protocols/request-response/Cargo.toml +++ b/protocols/request-response/Cargo.toml @@ -3,7 +3,7 @@ name = "libp2p-request-response" edition = "2021" rust-version = { workspace = true } description = "Generic Request/Response Protocols" -version = "0.25.2" +version = "0.26.0" authors = ["Parity Technologies "] license = "MIT" repository = "https://github.com/libp2p/rust-libp2p" diff --git a/protocols/upnp/Cargo.toml b/protocols/upnp/Cargo.toml index fbef93550b0..4b1ba3e204b 100644 --- a/protocols/upnp/Cargo.toml +++ b/protocols/upnp/Cargo.toml @@ -3,7 +3,7 @@ name = "libp2p-upnp" edition = "2021" rust-version = "1.60.0" description = "UPnP support for libp2p transports" -version = "0.1.1" +version = "0.2.0" license = "MIT" repository = "https://github.com/libp2p/rust-libp2p" keywords = ["peer-to-peer", "libp2p", "networking"] diff --git a/swarm-derive/Cargo.toml b/swarm-derive/Cargo.toml index 54ba2d2f495..322ffda0c1d 100644 --- a/swarm-derive/Cargo.toml +++ b/swarm-derive/Cargo.toml @@ -3,7 +3,7 @@ name = "libp2p-swarm-derive" edition = "2021" rust-version = { workspace = true } description = "Procedural macros of libp2p-swarm" -version = "0.33.0" +version = "0.34.0" authors = ["Parity Technologies "] license = "MIT" repository = "https://github.com/libp2p/rust-libp2p" diff --git a/swarm-test/Cargo.toml b/swarm-test/Cargo.toml index c3d2a993cb9..cad7c98affd 100644 --- a/swarm-test/Cargo.toml +++ b/swarm-test/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "libp2p-swarm-test" -version = "0.2.0" +version = "0.3.0" edition = "2021" rust-version = { workspace = true } license = "MIT" diff --git a/swarm/Cargo.toml b/swarm/Cargo.toml index d151e7af614..ae4ccd7ef1b 100644 --- a/swarm/Cargo.toml +++ b/swarm/Cargo.toml @@ -3,7 +3,7 @@ name = "libp2p-swarm" edition = "2021" rust-version = { workspace = true } description = "The libp2p swarm" -version = "0.43.6" +version = "0.44.0" authors = ["Parity Technologies "] license = "MIT" repository = "https://github.com/libp2p/rust-libp2p" diff --git a/transports/deflate/Cargo.toml b/transports/deflate/Cargo.toml index 9e2e1f4e029..605b9b9e767 100644 --- a/transports/deflate/Cargo.toml +++ b/transports/deflate/Cargo.toml @@ -3,7 +3,7 @@ name = "libp2p-deflate" edition = "2021" rust-version = { workspace = true } description = "Deflate encryption protocol for libp2p" -version = "0.40.1" +version = "0.41.0" authors = ["Parity Technologies "] license = "MIT" repository = "https://github.com/libp2p/rust-libp2p" diff --git a/transports/dns/Cargo.toml b/transports/dns/Cargo.toml index 947feb16b26..535cc240503 100644 --- a/transports/dns/Cargo.toml +++ b/transports/dns/Cargo.toml @@ -3,7 +3,7 @@ name = "libp2p-dns" edition = "2021" rust-version = { workspace = true } description = "DNS transport implementation for libp2p" -version = "0.40.1" +version = "0.41.0" authors = ["Parity Technologies "] license = "MIT" repository = "https://github.com/libp2p/rust-libp2p" diff --git a/transports/noise/Cargo.toml b/transports/noise/Cargo.toml index 80ab28fd81d..6c20d72213e 100644 --- a/transports/noise/Cargo.toml +++ b/transports/noise/Cargo.toml @@ -3,7 +3,7 @@ name = "libp2p-noise" edition = "2021" rust-version = { workspace = true } description = "Cryptographic handshake protocol using the noise framework." -version = "0.43.2" +version = "0.44.0" authors = ["Parity Technologies "] license = "MIT" repository = "https://github.com/libp2p/rust-libp2p" diff --git a/transports/plaintext/Cargo.toml b/transports/plaintext/Cargo.toml index 14c5fd71ae9..feee0af75b7 100644 --- a/transports/plaintext/Cargo.toml +++ b/transports/plaintext/Cargo.toml @@ -3,7 +3,7 @@ name = "libp2p-plaintext" edition = "2021" rust-version = { workspace = true } description = "Plaintext encryption dummy protocol for libp2p" -version = "0.40.1" +version = "0.41.0" authors = ["Parity Technologies "] license = "MIT" repository = "https://github.com/libp2p/rust-libp2p" diff --git a/transports/pnet/Cargo.toml b/transports/pnet/Cargo.toml index 53b7fe52211..97e13767ed1 100644 --- a/transports/pnet/Cargo.toml +++ b/transports/pnet/Cargo.toml @@ -3,7 +3,7 @@ name = "libp2p-pnet" edition = "2021" rust-version = { workspace = true } description = "Private swarm support for libp2p" -version = "0.23.1" +version = "0.24.0" authors = ["Parity Technologies "] license = "MIT" repository = "https://github.com/libp2p/rust-libp2p" diff --git a/transports/quic/Cargo.toml b/transports/quic/Cargo.toml index b73f33bc669..ee9e8b8d965 100644 --- a/transports/quic/Cargo.toml +++ b/transports/quic/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "libp2p-quic" -version = "0.9.3" +version = "0.10.0" authors = ["Parity Technologies "] edition = "2021" rust-version = { workspace = true } diff --git a/transports/tcp/Cargo.toml b/transports/tcp/Cargo.toml index 8e0f37302ea..fa6e3b73413 100644 --- a/transports/tcp/Cargo.toml +++ b/transports/tcp/Cargo.toml @@ -3,7 +3,7 @@ name = "libp2p-tcp" edition = "2021" rust-version = { workspace = true } description = "TCP/IP transport protocol for libp2p" -version = "0.40.1" +version = "0.41.0" authors = ["Parity Technologies "] license = "MIT" repository = "https://github.com/libp2p/rust-libp2p" diff --git a/transports/tls/Cargo.toml b/transports/tls/Cargo.toml index 29928cc21fc..10124f6cd56 100644 --- a/transports/tls/Cargo.toml +++ b/transports/tls/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "libp2p-tls" -version = "0.2.1" +version = "0.3.0" edition = "2021" rust-version = { workspace = true } description = "TLS configuration based on libp2p TLS specs." diff --git a/transports/uds/Cargo.toml b/transports/uds/Cargo.toml index 0f6f81735fc..3b84db3e074 100644 --- a/transports/uds/Cargo.toml +++ b/transports/uds/Cargo.toml @@ -3,7 +3,7 @@ name = "libp2p-uds" edition = "2021" rust-version = { workspace = true } description = "Unix domain sockets transport for libp2p" -version = "0.39.0" +version = "0.40.0" authors = ["Parity Technologies "] license = "MIT" repository = "https://github.com/libp2p/rust-libp2p" diff --git a/transports/websocket-websys/Cargo.toml b/transports/websocket-websys/Cargo.toml index 3f7b5d76886..2018df1bf07 100644 --- a/transports/websocket-websys/Cargo.toml +++ b/transports/websocket-websys/Cargo.toml @@ -3,7 +3,7 @@ name = "libp2p-websocket-websys" edition = "2021" rust-version = "1.60.0" description = "WebSocket for libp2p under WASM environment" -version = "0.2.0" +version = "0.3.0" authors = ["Vince Vasta "] license = "MIT" repository = "https://github.com/libp2p/rust-libp2p" diff --git a/transports/websocket/Cargo.toml b/transports/websocket/Cargo.toml index 3dc3a710567..488e93dc835 100644 --- a/transports/websocket/Cargo.toml +++ b/transports/websocket/Cargo.toml @@ -3,7 +3,7 @@ name = "libp2p-websocket" edition = "2021" rust-version = { workspace = true } description = "WebSocket transport for libp2p" -version = "0.42.1" +version = "0.43.0" authors = ["Parity Technologies "] license = "MIT" repository = "https://github.com/libp2p/rust-libp2p" diff --git a/transports/webtransport-websys/Cargo.toml b/transports/webtransport-websys/Cargo.toml index 54ecc5b9b40..9fcfd820b5d 100644 --- a/transports/webtransport-websys/Cargo.toml +++ b/transports/webtransport-websys/Cargo.toml @@ -3,7 +3,7 @@ name = "libp2p-webtransport-websys" edition = "2021" rust-version = { workspace = true } description = "WebTransport for libp2p under WASM environment" -version = "0.1.0" +version = "0.2.0" authors = [ "Yiannis Marangos ", "oblique ", diff --git a/wasm-tests/webtransport-tests/Cargo.toml b/wasm-tests/webtransport-tests/Cargo.toml index fb3e5db9ba6..97e8c5b0159 100644 --- a/wasm-tests/webtransport-tests/Cargo.toml +++ b/wasm-tests/webtransport-tests/Cargo.toml @@ -5,6 +5,9 @@ edition = "2021" license = "MIT" publish = false +[package.metadata.release] +release = false + [dependencies] futures = "0.3.28" getrandom = { version = "0.2.9", features = ["js"] }