Replace TBD with 0.32.0

We are gearing up for the 0.32.0 release; replace all instances of TBD
with the version number of the upcoming release.
This commit is contained in:
Tobin C. Harding 2024-03-23 05:36:52 +11:00
parent 6ff850539a
commit fd040f5e38
No known key found for this signature in database
GPG Key ID: 40BF9E4C269D6607
2 changed files with 3 additions and 3 deletions

View File

@ -349,7 +349,7 @@ impl Script {
/// This method has potentially confusing semantics and an unclear purpose, so it's going to be /// This method has potentially confusing semantics and an unclear purpose, so it's going to be
/// removed. Use `is_op_return` if you want `OP_RETURN` semantics. /// removed. Use `is_op_return` if you want `OP_RETURN` semantics.
#[deprecated( #[deprecated(
since = "TBD", since = "0.32.0",
note = "The method is not very useful, you might want `is_op_return`" note = "The method is not very useful, you might want `is_op_return`"
)] )]
#[inline] #[inline]

View File

@ -20,7 +20,7 @@ pub struct TaprootMerkleBranch(Vec<TapNodeHash>);
impl TaprootMerkleBranch { impl TaprootMerkleBranch {
/// Returns a reference to the slice of hashes. /// Returns a reference to the slice of hashes.
#[deprecated(since = "TBD", note = "Use `as_slice` instead")] #[deprecated(since = "0.32.0", note = "Use `as_slice` instead")]
#[inline] #[inline]
pub fn as_inner(&self) -> &[TapNodeHash] { &self.0 } pub fn as_inner(&self) -> &[TapNodeHash] { &self.0 }
@ -106,7 +106,7 @@ impl TaprootMerkleBranch {
} }
/// Returns the inner list of hashes. /// Returns the inner list of hashes.
#[deprecated(since = "TBD", note = "Use `into_vec` instead")] #[deprecated(since = "0.32.0", note = "Use `into_vec` instead")]
#[inline] #[inline]
pub fn into_inner(self) -> Vec<TapNodeHash> { self.0 } pub fn into_inner(self) -> Vec<TapNodeHash> { self.0 }