Skip to content

Commit

Permalink
Merge rust-bitcoin#2626: Replace TBD with 0.32.0
Browse files Browse the repository at this point in the history
fd040f5 Replace TBD with 0.32.0 (Tobin C. Harding)

Pull request description:

  We are gearing up for the 0.32.0 release; replace all instances of TBD with the version number of the upcoming release.

ACKs for top commit:
  sanket1729:
    ACK fd040f5
  apoelstra:
    ACK fd040f5

Tree-SHA512: fe73fd47a794557742f618b21434cd3cc18cde0e861216716723bfcc9135accf63590e1ea60bfeda066acec7312c8b9f1bf09e7454e7161ccaba5ebe60af66fd
  • Loading branch information
apoelstra committed Mar 24, 2024
2 parents bfd5255 + fd040f5 commit c211e7b
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion bitcoin/src/blockdata/script/borrowed.rs
Original file line number Diff line number Diff line change
Expand Up @@ -359,7 +359,7 @@ impl Script {
/// 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.
#[deprecated(
since = "TBD",
since = "0.32.0",
note = "The method is not very useful, you might want `is_op_return`"
)]
#[inline]
Expand Down
4 changes: 2 additions & 2 deletions bitcoin/src/taproot/merkle_branch.rs
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ pub struct TaprootMerkleBranch(Vec<TapNodeHash>);

impl TaprootMerkleBranch {
/// 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]
pub fn as_inner(&self) -> &[TapNodeHash] { &self.0 }

Expand Down Expand Up @@ -106,7 +106,7 @@ impl TaprootMerkleBranch {
}

/// 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]
pub fn into_inner(self) -> Vec<TapNodeHash> { self.0 }

Expand Down

0 comments on commit c211e7b

Please sign in to comment.