Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

*: Prepare v0.45.1 #2700

Merged
merged 3 commits into from Jun 9, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
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).
Comment on lines +49 to +53
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Previous entries don't have whitespace at the front.

Suggested change
- 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).
- 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).

Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Not sure I am following. Isn't this the same for v0.45.0 below?

Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

The diff view doesn't show the whitespace 🙃


# 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