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.24.0 release #1713

Merged
merged 3 commits into from
Aug 18, 2020
Merged
Show file tree
Hide file tree
Changes from 2 commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 3 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -23,9 +23,10 @@
- [`parity-multiaddr` CHANGELOG](misc/multiaddr/CHANGELOG.md)
- [`libp2p-core-derive` CHANGELOG](misc/core-derive/CHANGELOG.md)

# Version 0.24.0 [unreleased]
# Version 0.24.0 [2020-08-18]

- Update `libp2p-core`, `libp2p-swarm` and dependent crates.
- Update `libp2p-core`, `libp2p-gossipsub`, `libp2p-kad`, `libp2p-mdns`,
`libp2p-ping`, `libp2p-request-response`, `libp2p-swarm` and dependent crates.

# Version 0.23.0 (2020-08-03)

Expand Down
2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
name = "libp2p"
edition = "2018"
description = "Peer-to-peer networking library"
version = "0.23.0"
version = "0.24.0"
authors = ["Parity Technologies <admin@parity.io>"]
license = "MIT"
repository = "https://github.com/libp2p/rust-libp2p"
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.21.0 [unreleased]
# 0.21.0 [2020-08-18]

- Add `transport::Builder::multiplex_ext` for further customisation during
`StreamMuxer` creation. [PR 1691](https://github.com/libp2p/rust-libp2p/pull/1691).
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.21.0 [unreleased]
# 0.21.0 [2020-08-18]

- Bump `libp2p-core` dependency.

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.21.0 [unreleased]
# 0.21.0 [2020-08-18]

- Bump `libp2p-core` dependency.

Expand Down
2 changes: 1 addition & 1 deletion protocols/deflate/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# 0.21.0 [unreleased]
# 0.21.0 [2020-08-18]

- Bump `libp2p-core` dependency.

Expand Down
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.21.0 [unreleased]
# 0.21.0 [2020-08-18]

- Bump `libp2p-core` and `libp2p-swarm` dependency.

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.21.0 [unreleased]
# 0.21.0 [2020-08-18]

- Add public API to list topics and peers. [PR 1677](https://github.com/libp2p/rust-libp2p/pull/1677).

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.21.0 [unreleased]
# 0.21.0 [2020-08-18]

- Bump `libp2p-core` and `libp2p-swarm` dependencies.

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.22.0 [unreleased]
# 0.22.0 [2020-08-18]

- Store addresses in provider records.
See [PR 1708](https://github.com/libp2p/rust-libp2p/pull/1708).
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.21.0 [unreleased]
# 0.21.0 [2020-08-18]

- Bump `libp2p-core` and `libp2p-swarm` dependencies.

Expand Down
2 changes: 1 addition & 1 deletion protocols/noise/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# 0.23.0 [unreleased]
# 0.23.0 [2020-08-18]

- Bump `libp2p-core` dependency.

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.21.0 [unreleased]
# 0.21.0 [2020-08-18]

- Refactor the ping protocol for conformity by (re)using
a single substream for outbound pings, addressing
Expand Down
2 changes: 1 addition & 1 deletion protocols/plaintext/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# 0.21.0 [unreleased]
# 0.21.0 [2020-08-18]

- Bump `libp2p-core` dependency.

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.2.0 // unreleased
# 0.2.0 [2020-08-18]

- Fixed connection keep-alive, permitting connections to close due
to inactivity.
Expand Down
2 changes: 1 addition & 1 deletion protocols/secio/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# 0.21.0 [unreleased]
# 0.21.0 [2020-08-18]

- Bump `libp2p-core` dependency.

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.21.0 [unreleased]
# 0.21.0 [2020-08-18]

- Add as_ref and as_mut functions to Toggle
[PR 1684](https://github.com/libp2p/rust-libp2p/pull/1684).
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.21.0 [unreleased]
# 0.21.0 [2020-08-18]

- Bump `libp2p-core` dependency.

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.21.0 [unreleased]
# 0.21.0 [2020-08-18]

- Bump `libp2p-core` dependency.

Expand Down
2 changes: 1 addition & 1 deletion transports/uds/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# 0.21.0 [unreleased]
# 0.21.0 [2020-08-18]

- Update `libp2p-core` dependency.

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.21.0 [unreleased]
# 0.21.0 [2020-08-18]

- Update `libp2p-core` dependency.

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.22.0 [unreleased]
# 0.22.0 [2020-08-18]

- Bump `libp2p-core` dependency.

Expand Down