Skip to content

Commit

Permalink
Bump swarm to 0.44.0; minor changelog and doc fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
StemCll committed Sep 18, 2023
1 parent de86ba5 commit bec1aaf
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 6 deletions.
2 changes: 1 addition & 1 deletion Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -95,7 +95,7 @@ libp2p-rendezvous = { version = "0.13.0", path = "protocols/rendezvous" }
libp2p-upnp = { version = "0.1.0", path = "protocols/upnp" }
libp2p-request-response = { version = "0.25.1", path = "protocols/request-response" }
libp2p-server = { version = "0.12.3", path = "misc/server" }
libp2p-swarm = { version = "0.43.4", path = "swarm" }
libp2p-swarm = { version = "0.44.0", path = "swarm" }
libp2p-swarm-derive = { version = "0.34.0", path = "swarm-derive" }
libp2p-swarm-test = { version = "0.2.0", path = "swarm-test" }
libp2p-tcp = { version = "0.40.0", path = "transports/tcp" }
Expand Down
2 changes: 1 addition & 1 deletion swarm-derive/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
## 0.34.0
## 0.34.0 - unreleased

- Add `from_swarm::NewExternalAddrOfPeer` event.
See [PR 4371]
Expand Down
2 changes: 1 addition & 1 deletion swarm/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ name = "libp2p-swarm"
edition = "2021"
rust-version = { workspace = true }
description = "The libp2p swarm"
version = "0.43.4"
version = "0.44.0"
authors = ["Parity Technologies <admin@parity.io>"]
license = "MIT"
repository = "https://github.com/libp2p/rust-libp2p"
Expand Down
3 changes: 1 addition & 2 deletions swarm/src/behaviour.rs
Original file line number Diff line number Diff line change
Expand Up @@ -321,8 +321,7 @@ pub enum ToSwarm<TOutEvent, TInEvent> {
connection: CloseConnection,
},

/// TODO: more documentation needed
/// Reports external address of a remote peer to other `NetworkBehaviours`
/// Reports external address of a remote peer to other [`NetworkBehaviours`].

Check failure on line 324 in swarm/src/behaviour.rs

View workflow job for this annotation

GitHub Actions / Check rustdoc intra-doc links

unresolved link to `NetworkBehaviours`
NewExternalAddrOfPeer { peer_id: PeerId, addr: Multiaddr },
}

Expand Down

0 comments on commit bec1aaf

Please sign in to comment.