Skip to content

Commit a430e6b

Browse files
authored
protocols/kad: Export KademliaBucketInserts (#2294)
1 parent 2d13f99 commit a430e6b

File tree

5 files changed

+17
-4
lines changed

5 files changed

+17
-4
lines changed

CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -42,6 +42,12 @@
4242

4343
# `libp2p` facade crate
4444

45+
46+
## Version 0.40.0-rc.2 [2021-10-15]
47+
48+
- Update individual crates.
49+
- `libp2p-kad`
50+
4551
## Version 0.40.0-rc.1 [2021-10-15]
4652

4753
- Update individual crates.

Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
name = "libp2p"
33
edition = "2018"
44
description = "Peer-to-peer networking library"
5-
version = "0.40.0-rc.1"
5+
version = "0.40.0-rc.2"
66
authors = ["Parity Technologies <admin@parity.io>"]
77
license = "MIT"
88
repository = "https://github.com/libp2p/rust-libp2p"
@@ -72,7 +72,7 @@ libp2p-core = { version = "0.30.0-rc.1", path = "core", default-features = fals
7272
libp2p-floodsub = { version = "0.31.0-rc.1", path = "protocols/floodsub", optional = true }
7373
libp2p-gossipsub = { version = "0.33.0-rc.1", path = "./protocols/gossipsub", optional = true }
7474
libp2p-identify = { version = "0.31.0-rc.1", path = "protocols/identify", optional = true }
75-
libp2p-kad = { version = "0.32.0-rc.1", path = "protocols/kad", optional = true }
75+
libp2p-kad = { version = "0.32.0-rc.2", path = "protocols/kad", optional = true }
7676
libp2p-metrics = { version = "0.1.0-rc.1", path = "misc/metrics", optional = true }
7777
libp2p-mplex = { version = "0.30.0-rc.1", path = "muxers/mplex", optional = true }
7878
libp2p-noise = { version = "0.33.0-rc.1", path = "transports/noise", optional = true }

protocols/kad/CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,9 @@
1+
# 0.32.0-rc.2 [2021-10-15]
2+
3+
- Export `KademliaBucketInserts` (see [PR 2294]).
4+
5+
[PR 2294]: https://github.com/libp2p/rust-libp2p/pull/2294
6+
17
# 0.32.0-rc.1 [2021-10-15]
28

39
- Make default features of `libp2p-core` optional.

protocols/kad/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
name = "libp2p-kad"
33
edition = "2018"
44
description = "Kademlia protocol for libp2p"
5-
version = "0.32.0-rc.1"
5+
version = "0.32.0-rc.2"
66
authors = ["Parity Technologies <admin@parity.io>"]
77
license = "MIT"
88
repository = "https://github.com/libp2p/rust-libp2p"

protocols/kad/src/lib.rs

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,8 @@ pub use behaviour::{
4848
QueryStats,
4949
};
5050
pub use behaviour::{
51-
Kademlia, KademliaCaching, KademliaConfig, KademliaEvent, KademliaStoreInserts, Quorum,
51+
Kademlia, KademliaBucketInserts, KademliaCaching, KademliaConfig, KademliaEvent,
52+
KademliaStoreInserts, Quorum,
5253
};
5354
pub use protocol::KadConnectionType;
5455
pub use query::QueryId;

0 commit comments

Comments
 (0)