Skip to content

Commit

Permalink
*: Prepare v0.43.0 (#2531)
Browse files Browse the repository at this point in the history
  • Loading branch information
mxinden committed Feb 22, 2022
1 parent fd2be38 commit b185946
Show file tree
Hide file tree
Showing 27 changed files with 54 additions and 49 deletions.
49 changes: 25 additions & 24 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -42,32 +42,33 @@

# `libp2p` facade crate

## Version 0.43.0 [unreleased]
## Version 0.43.0 [2022-02-22]

- Update individual crates.
- Update to `libp2p-autonat` `v0.2.0`.
- Update to `libp2p-core` `v0.32.0`.
- Update to `libp2p-deflate` `v0.32.0`.
- Update to `libp2p-dns` `v0.32.0`.
- Update to `libp2p-floodsub` `v0.34.0`.
- Update to `libp2p-gossipsub` `v0.36.0`.
- Update to `libp2p-identify` `v0.34.0`.
- Update to `libp2p-kad` `v0.35.0`.
- Update to `libp2p-mdns` `v0.35.0`.
- Update to `libp2p-metrics` `v0.4.0`.
- Update to `libp2p-mplex` `v0.32.0`.
- Update to `libp2p-noise` `v0.35.0`.
- Update to `libp2p-ping` `v0.34.0`.
- Update to `libp2p-plaintext` `v0.32.0`.
- Update to `libp2p-relay` `v0.7.0`.
- Update to `libp2p-rendezvous` `v0.4.0`.
- Update to `libp2p-request-response` `v0.16.0`.
- Update to `libp2p-swarm` `v0.34.0`.
- Update to `libp2p-tcp` `v0.32.0`.
- Update to `libp2p-uds` `v0.32.0`.
- Update to `libp2p-wasm-ext` `v0.32.0`.
- Update to `libp2p-websocket` `v0.34.0`.
- Update to `libp2p-yamux` `v0.36.0`.
- Update to `libp2p-autonat` [`v0.2.0`](protocols/autonat/CHANGELOG.md#020-2022-02-22).
- Update to `libp2p-core` [`v0.32.0`](core/CHANGELOG.md#0320-2022-02-22).
- Update to `libp2p-deflate` [`v0.32.0`](transports/deflate/CHANGELOG.md#0320-2022-02-22).
- Update to `libp2p-dns` [`v0.32.0`](transports/dns/CHANGELOG.md#0320-2022-02-22).
- Update to `libp2p-floodsub` [`v0.34.0`](protocols/floodsub/CHANGELOG.md#0340-2022-02-22).
- Update to `libp2p-gossipsub` [`v0.36.0`](protocols/gossipsub/CHANGELOG.md#0360-2022-02-22).
- Update to `libp2p-identify` [`v0.34.0`](protocols/identify/CHANGELOG.md#0340-2022-02-22).
- Update to `libp2p-kad` [`v0.35.0`](protocols/kad/CHANGELOG.md#0350-2022-02-22).
- Update to `libp2p-mdns` [`v0.35.0`](protocols/mdns/CHANGELOG.md#0350-2022-02-22).
- Update to `libp2p-metrics` [`v0.4.0`](misc/metrics/CHANGELOG.md#040-2022-02-22).
- Update to `libp2p-mplex` [`v0.32.0`](muxers/mplex/CHANGELOG.md#0320-2022-02-22).
- Update to `libp2p-noise` [`v0.35.0`](transports/noise/CHANGELOG.md#0350-2022-02-22).
- Update to `libp2p-ping` [`v0.34.0`](protocols/ping/CHANGELOG.md#0340-2022-02-22).
- Update to `libp2p-plaintext` [`v0.32.0`](transports/plaintext/CHANGELOG.md#0320-2022-02-22).
- Update to `libp2p-relay` [`v0.7.0`](protocols/relay/CHANGELOG.md#070-2022-02-22).
- Update to `libp2p-rendezvous` [`v0.4.0`](protocols/rendezvous/CHANGELOG.md#040-2022-02-22).
- Update to `libp2p-request-response` [`v0.16.0`](protocols/request-response/CHANGELOG.md#0160-2022-02-22).
- Update to `libp2p-swarm` [`v0.34.0`](swarm/CHANGELOG.md#0340-2022-02-22).
- Update to `libp2p-derive` [`v0.27.0`](swarm-derive/CHANGELOG.md#0270-2022-02-22).
- Update to `libp2p-tcp` [`v0.32.0`](transports/tcp/CHANGELOG.md#0320-2022-02-22).
- Update to `libp2p-uds` [`v0.32.0`](transports/uds/CHANGELOG.md#0320-2022-02-22).
- Update to `libp2p-wasm-ext` [`v0.32.0`](transports/wasm-ext/CHANGELOG.md#0320-2022-02-22).
- Update to `libp2p-websocket` [`v0.34.0`](transports/websocket/CHANGELOG.md#0340-2022-02-22).
- Update to `libp2p-yamux` [`v0.36.0`](muxers/yamux/CHANGELOG.md#0360-2022-02-22).

- Update to `parking_lot` `v0.12.0`. See [PR 2463].

Expand Down
2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -93,7 +93,7 @@ libp2p-relay = { version = "0.7.0", path = "protocols/relay", optional = true }
libp2p-rendezvous = { version = "0.4.0", path = "protocols/rendezvous", optional = true }
libp2p-request-response = { version = "0.16.0", path = "protocols/request-response", optional = true }
libp2p-swarm = { version = "0.34.0", path = "swarm" }
libp2p-swarm-derive = { version = "0.26.1", path = "swarm-derive" }
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.32.0", path = "transports/wasm-ext", default-features = false, optional = true }
libp2p-yamux = { version = "0.36.0", path = "muxers/yamux", optional = true }
Expand Down
2 changes: 1 addition & 1 deletion core/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# 0.32.0 [unreleased]
# 0.32.0 [2022-02-22]

- Remove `Network`. `libp2p-core` is from now on an auxiliary crate only. Users
that have previously used `Network` only, will need to use `Swarm` instead. See
Expand Down
2 changes: 1 addition & 1 deletion misc/metrics/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# 0.4.0 [unreleased]
# 0.4.0 [2022-02-22]

- Update to `libp2p-core` `v0.32.0`.

Expand Down
2 changes: 1 addition & 1 deletion muxers/mplex/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# 0.32.0 [unreleased]
# 0.32.0 [2022-02-22]

- Update to `libp2p-core` `v0.32.0`.

Expand Down
2 changes: 1 addition & 1 deletion muxers/yamux/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# 0.36.0 [unreleased]
# 0.36.0 [2022-02-22]

- Update to `libp2p-core` `v0.32.0`.

Expand Down
2 changes: 1 addition & 1 deletion protocols/autonat/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# 0.2.0 [unreleased]
# 0.2.0 [2022-02-22]

- Update to `libp2p-core` `v0.32.0`.

Expand Down
2 changes: 1 addition & 1 deletion protocols/dcutr/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
# 0.1.0 [unreleased]
# 0.1.0 [2022-02-22]

- Initial release.
2 changes: 1 addition & 1 deletion protocols/floodsub/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# 0.34.0 [unreleased]
# 0.34.0 [2022-02-22]

- Update to `libp2p-core` `v0.32.0`.

Expand Down
2 changes: 1 addition & 1 deletion protocols/gossipsub/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# 0.36.0 [unreleased]
# 0.36.0 [2022-02-22]

- Update to `libp2p-core` `v0.32.0`.

Expand Down
2 changes: 1 addition & 1 deletion protocols/identify/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# 0.34.0 [unreleased]
# 0.34.0 [2022-02-22]

- Update to `libp2p-core` `v0.32.0`.

Expand Down
2 changes: 1 addition & 1 deletion protocols/kad/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# 0.35.0 [unreleased]
# 0.35.0 [2022-02-22]

- Update to `libp2p-core` `v0.32.0`.

Expand Down
2 changes: 1 addition & 1 deletion protocols/mdns/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# 0.35.0 [unreleased]
# 0.35.0 [2022-02-22]

- Update to `libp2p-core` `v0.32.0`.

Expand Down
2 changes: 1 addition & 1 deletion protocols/ping/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# 0.34.0 [unreleased]
# 0.34.0 [2022-02-22]

- Update to `libp2p-core` `v0.32.0`.

Expand Down
2 changes: 1 addition & 1 deletion protocols/relay/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# 0.7.0 [unreleased]
# 0.7.0 [2022-02-22]

- Update to `libp2p-core` `v0.32.0`.

Expand Down
2 changes: 1 addition & 1 deletion protocols/rendezvous/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# 0.4.0 [unreleased]
# 0.4.0 [2022-02-22]

- Update to `libp2p-core` `v0.32.0`.

Expand Down
2 changes: 1 addition & 1 deletion protocols/request-response/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# 0.16.0 [unreleased]
# 0.16.0 [2022-02-22]

- Update to `libp2p-core` `v0.32.0`.

Expand Down
4 changes: 4 additions & 0 deletions swarm-derive/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
# 0.27.0 [2022-02-22]

- Adjust to latest changes in `libp2p-swarm`.

# 0.26.1 [2022-01-27]

- Remove unnecessary clone of error in `inject_dial_failure` (see [PR 2349]).
Expand Down
2 changes: 1 addition & 1 deletion swarm-derive/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ name = "libp2p-swarm-derive"
edition = "2021"
rust-version = "1.56.1"
description = "Procedural macros of libp2p-core"
version = "0.26.1"
version = "0.27.0"
authors = ["Parity Technologies <admin@parity.io>"]
license = "MIT"
repository = "https://github.com/libp2p/rust-libp2p"
Expand Down
2 changes: 1 addition & 1 deletion swarm/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# 0.34.0 [unreleased]
# 0.34.0 [2022-02-22]

- Rename `ProtocolsHandler` to `ConnectionHandler`. Upgrade should be as simple as renaming all
occurences of `ProtocolsHandler` to `ConnectionHandler` with your favorite text manipulation tool
Expand Down
2 changes: 1 addition & 1 deletion transports/deflate/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# 0.32.0 [unreleased]
# 0.32.0 [2022-02-22]

- Update to `libp2p-core` `v0.32.0`.

Expand Down
2 changes: 1 addition & 1 deletion transports/dns/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# 0.32.0 [unreleased]
# 0.32.0 [2022-02-22]

- Update to `libp2p-core` `v0.32.0`.

Expand Down
2 changes: 1 addition & 1 deletion transports/noise/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# 0.35.0 [unreleased]
# 0.35.0 [2022-02-22]

- Update to `libp2p-core` `v0.32.0`.

Expand Down
2 changes: 1 addition & 1 deletion transports/plaintext/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# 0.32.0 [unreleased]
# 0.32.0 [2022-02-22]

- Update to `libp2p-core` `v0.32.0`.

Expand Down
2 changes: 1 addition & 1 deletion transports/tcp/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# 0.32.0 [unreleased]
# 0.32.0 [2022-02-22]

- Update to `libp2p-core` `v0.32.0`.

Expand Down
2 changes: 1 addition & 1 deletion transports/wasm-ext/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# 0.32.0 [unreleased]
# 0.32.0 [2022-02-22]

- Update to `libp2p-core` `v0.32.0`.

Expand Down
2 changes: 1 addition & 1 deletion transports/websocket/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# 0.34.0 [unreleased]
# 0.34.0 [2022-02-22]

- Update to `libp2p-core` `v0.32.0`.

Expand Down

0 comments on commit b185946

Please sign in to comment.