Skip to content

Commit

Permalink
remove deprecated function
Browse files Browse the repository at this point in the history
  • Loading branch information
ekiwi committed Dec 19, 2024
1 parent 0932b0e commit 29af768
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 10 deletions.
2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "baa"
version = "0.15.0"
version = "0.16.0"
edition = "2021"
authors = ["Kevin Laeufer <[email protected]>"]
description = "BitVector and Array Arithmetic"
Expand Down
9 changes: 0 additions & 9 deletions src/bv/owned.rs
Original file line number Diff line number Diff line change
Expand Up @@ -208,15 +208,6 @@ impl BitVecValue {
Self(FALSE_VALUE.clone())
}

#[deprecated(since = "0.15.0", note = "please use `new_true` instead")]
pub fn tru() -> Self {
Self::new_true()
}
#[deprecated(since = "0.15.0", note = "please use `new_false` instead")]
pub fn fals() -> Self {
Self::new_false()
}

#[cfg(feature = "bigint")]
pub fn from_big_int(value: &num_bigint::BigInt, bits: WidthInt) -> Self {
let mut out = Self::zero(bits);
Expand Down

0 comments on commit 29af768

Please sign in to comment.