From 01e2233f6c1c419a8c2157cebb13619f8f600305 Mon Sep 17 00:00:00 2001 From: "Tobin C. Harding" Date: Sat, 4 Nov 2023 09:51:31 +1100 Subject: [PATCH] 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. --- bitcoin/src/bip32.rs | 6 ------ 1 file changed, 6 deletions(-) diff --git a/bitcoin/src/bip32.rs b/bitcoin/src/bip32.rs index 7a2c4be9..059278a5 100644 --- a/bitcoin/src/bip32.rs +++ b/bitcoin/src/bip32.rs @@ -6,8 +6,6 @@ //! at . //! -#![allow(deprecated)] // Remove once we remove XpubIdentifier. - use core::convert::TryInto; use core::default::Default; use core::ops::Index; @@ -55,10 +53,6 @@ impl_array_newtype!(Fingerprint, u8, 4); impl_bytes_newtype!(Fingerprint, 4); 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. pub struct XKeyIdentifier(hash160::Hash); }