diff --git a/swarm/CHANGELOG.md b/swarm/CHANGELOG.md index ecf49a382363..2326adbefcce 100644 --- a/swarm/CHANGELOG.md +++ b/swarm/CHANGELOG.md @@ -1,3 +1,11 @@ +## 0.44.0 - unreleased + +- Add `PeerCondition` variant `DisconnectedAndNotDialing`, combining pre-existing conditions. + A new dialing attempt is iniated _only if_ the peer is both considered disconnected and there is currently no ongoing dialing attempt. + See [PR 4225]. + +[PR 4225]: https://github.com/libp2p/rust-libp2p/pull/4225 + ## 0.43.1 - Do not announce external address candidate before address translation, unless translation does not apply. diff --git a/swarm/Cargo.toml b/swarm/Cargo.toml index 35279c4d1933..c77e26d19f6d 100644 --- a/swarm/Cargo.toml +++ b/swarm/Cargo.toml @@ -3,7 +3,7 @@ name = "libp2p-swarm" edition = "2021" rust-version = { workspace = true } description = "The libp2p swarm" -version = "0.43.1" +version = "0.44.0" authors = ["Parity Technologies "] license = "MIT" repository = "https://github.com/libp2p/rust-libp2p"