Skip to content

Commit 3e5f643

Browse files
authored
chore(identify): remove deprecated items
Related: #3647. Pull-Request: #3698.
1 parent 4ca8885 commit 3e5f643

File tree

2 files changed

+2
-21
lines changed

2 files changed

+2
-21
lines changed

protocols/identify/CHANGELOG.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,10 @@
11
## 0.43.0 - unreleased
22

3+
- Remove deprecated `Identify` prefixed symbols. See [PR 3698].
34
- Raise MSRV to 1.65.
45
See [PR 3715].
56

7+
[PR 3698]: https://github.com/libp2p/rust-libp2p/pull/3698
68
[PR 3715]: https://github.com/libp2p/rust-libp2p/pull/3715
79

810
## 0.42.2

protocols/identify/src/lib.rs

Lines changed: 0 additions & 21 deletions
Original file line numberDiff line numberDiff line change
@@ -44,27 +44,6 @@
4444
pub use self::behaviour::{Behaviour, Config, Event};
4545
pub use self::protocol::{Info, UpgradeError, PROTOCOL_NAME, PUSH_PROTOCOL_NAME};
4646

47-
#[deprecated(
48-
since = "0.40.0",
49-
note = "Use re-exports that omit `Identify` prefix, i.e. `libp2p_identify::Config`"
50-
)]
51-
pub type IdentifyConfig = Config;
52-
53-
#[deprecated(
54-
since = "0.40.0",
55-
note = "Use re-exports that omit `Identify` prefix, i.e. `libp2p_identify::Event`"
56-
)]
57-
pub type IdentifyEvent = Event;
58-
59-
#[deprecated(since = "0.40.0", note = "Use libp2p_identify::Behaviour instead.")]
60-
pub type Identify = Behaviour;
61-
62-
#[deprecated(
63-
since = "0.40.0",
64-
note = "Use re-exports that omit `Identify` prefix, i.e. `libp2p_identify::Info`"
65-
)]
66-
pub type IdentifyInfo = Info;
67-
6847
mod behaviour;
6948
mod handler;
7049
mod protocol;

0 commit comments

Comments
 (0)