Skip to content

Commit

Permalink
*: Prepare v0.45.1 (#2700)
Browse files Browse the repository at this point in the history
  • Loading branch information
mxinden committed Jun 9, 2022
1 parent 5cb4886 commit 802d00e
Show file tree
Hide file tree
Showing 7 changed files with 20 additions and 11 deletions.
9 changes: 9 additions & 0 deletions CHANGELOG.md
Expand Up @@ -43,6 +43,15 @@

# `libp2p` facade crate

# 0.45.1

- Update individual crates.
- Update to [`libp2p-dcutr` `v0.3.1`](protocols/dcutr/CHANGELOG.md).
- Update to [`libp2p-identify` `v0.36.1`](protocols/identify/CHANGELOG.md).
- Update to [`libp2p-kad` `v0.37.1`](protocols/kad/CHANGELOG.md).
- Update to [`libp2p-relay` `v0.9.1`](protocols/relay/CHANGELOG.md).
- Update to [`libp2p-swarm` `v0.36.1`](swarm/CHANGELOG.md).

# 0.45.0

- Update individual crates.
Expand Down
12 changes: 6 additions & 6 deletions Cargo.toml
Expand Up @@ -3,7 +3,7 @@ name = "libp2p"
edition = "2021"
rust-version = "1.56.1"
description = "Peer-to-peer networking library"
version = "0.45.0"
version = "0.45.1"
authors = ["Parity Technologies <admin@parity.io>"]
license = "MIT"
repository = "https://github.com/libp2p/rust-libp2p"
Expand Down Expand Up @@ -78,20 +78,20 @@ lazy_static = "1.2"

libp2p-autonat = { version = "0.4.0", path = "protocols/autonat", optional = true }
libp2p-core = { version = "0.33.0", path = "core", default-features = false }
libp2p-dcutr = { version = "0.3.0", path = "protocols/dcutr", optional = true }
libp2p-dcutr = { version = "0.3.1", path = "protocols/dcutr", optional = true }
libp2p-floodsub = { version = "0.36.0", path = "protocols/floodsub", optional = true }
libp2p-identify = { version = "0.36.0", path = "protocols/identify", optional = true }
libp2p-kad = { version = "0.37.0", path = "protocols/kad", optional = true }
libp2p-identify = { version = "0.36.1", path = "protocols/identify", optional = true }
libp2p-kad = { version = "0.37.1", path = "protocols/kad", optional = true }
libp2p-metrics = { version = "0.6.0", path = "misc/metrics", optional = true }
libp2p-mplex = { version = "0.33.0", path = "muxers/mplex", optional = true }
libp2p-noise = { version = "0.36.0", path = "transports/noise", optional = true }
libp2p-ping = { version = "0.36.0", path = "protocols/ping", optional = true }
libp2p-plaintext = { version = "0.33.0", path = "transports/plaintext", optional = true }
libp2p-pnet = { version = "0.22.0", path = "transports/pnet", optional = true }
libp2p-relay = { version = "0.9.0", path = "protocols/relay", optional = true }
libp2p-relay = { version = "0.9.1", path = "protocols/relay", optional = true }
libp2p-rendezvous = { version = "0.6.0", path = "protocols/rendezvous", optional = true }
libp2p-request-response = { version = "0.18.0", path = "protocols/request-response", optional = true }
libp2p-swarm = { version = "0.36.0", path = "swarm" }
libp2p-swarm = { version = "0.36.1", path = "swarm" }
libp2p-swarm-derive = { version = "0.27.0", path = "swarm-derive" }
libp2p-uds = { version = "0.32.0", path = "transports/uds", optional = true }
libp2p-wasm-ext = { version = "0.33.0", path = "transports/wasm-ext", default-features = false, optional = true }
Expand Down
2 changes: 1 addition & 1 deletion protocols/dcutr/CHANGELOG.md
@@ -1,4 +1,4 @@
# 0.3.1 - unreleased
# 0.3.1

- Upgrade at most one inbound connect request.

Expand Down
2 changes: 1 addition & 1 deletion protocols/identify/CHANGELOG.md
@@ -1,4 +1,4 @@
# 0.36.1 - unreleased
# 0.36.1

- Allow at most one inbound identify push stream.

Expand Down
2 changes: 1 addition & 1 deletion protocols/kad/CHANGELOG.md
@@ -1,4 +1,4 @@
# 0.37.1 - unreleased
# 0.37.1

- Limit # of inbound streams to 32. [See PR 2699].

Expand Down
2 changes: 1 addition & 1 deletion protocols/relay/CHANGELOG.md
@@ -1,4 +1,4 @@
# 0.9.1 - unreleased
# 0.9.1

- Respond to at most one incoming reservation request. Deny <= 8 incoming
circuit requests with one per peer. And deny new circuits before accepting new
Expand Down
2 changes: 1 addition & 1 deletion swarm/CHANGELOG.md
@@ -1,4 +1,4 @@
# 0.36.1 - unreleased
# 0.36.1

- Limit negotiating inbound substreams per connection. See [PR 2697].

Expand Down

0 comments on commit 802d00e

Please sign in to comment.