Remove deprecated since NEXT-RELEASE

Not sure what happened here but our release job didn't catch this? We
should have updated this to "since = 0.31.0" before release. Since we
only deprecate for one release lets go ahead and remove this.
This commit is contained in:
Tobin C. Harding 2023-11-04 09:51:31 +11:00
parent 9b2e1c591a
commit 01e2233f6c
No known key found for this signature in database
GPG Key ID: 40BF9E4C269D6607
1 changed files with 0 additions and 6 deletions

View File

@ -6,8 +6,6 @@
//! at <https://github.com/bitcoin/bips/blob/master/bip-0032.mediawiki>. //! at <https://github.com/bitcoin/bips/blob/master/bip-0032.mediawiki>.
//! //!
#![allow(deprecated)] // Remove once we remove XpubIdentifier.
use core::convert::TryInto; use core::convert::TryInto;
use core::default::Default; use core::default::Default;
use core::ops::Index; use core::ops::Index;
@ -55,10 +53,6 @@ impl_array_newtype!(Fingerprint, u8, 4);
impl_bytes_newtype!(Fingerprint, 4); impl_bytes_newtype!(Fingerprint, 4);
hash_newtype! { hash_newtype! {
/// XpubIdentifier as defined in BIP-32.
#[deprecated(since = "0.0.0-NEXT-RELEASE", note = "use XKeyIdentifier instead")]
pub struct XpubIdentifier(hash160::Hash);
/// Extended key identifier as defined in BIP-32. /// Extended key identifier as defined in BIP-32.
pub struct XKeyIdentifier(hash160::Hash); pub struct XKeyIdentifier(hash160::Hash);
} }