diff --git a/Cargo.toml b/Cargo.toml index cc7607f..db08c0b 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "baa" -version = "0.15.0" +version = "0.16.0" edition = "2021" authors = ["Kevin Laeufer "] description = "BitVector and Array Arithmetic" diff --git a/src/bv/owned.rs b/src/bv/owned.rs index 96052f2..43f86c8 100644 --- a/src/bv/owned.rs +++ b/src/bv/owned.rs @@ -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);