bump to 0.2.1

This commit is contained in:
EvilMuffinHa 2022-08-03 00:11:50 -04:00
parent f313051907
commit fca71af1df
2 changed files with 3 additions and 5 deletions

View File

@ -1,6 +1,6 @@
[package]
name = "smallint"
version = "0.2.0"
version = "0.2.1"
edition = "2021"
authors = ["artofrev"]
description = "A library for optimized arbitrary precision integers."

View File

@ -77,7 +77,6 @@ impl core::fmt::Debug for SmallUint {
}
}
impl Drop for SmallInt {
fn drop(&mut self) {
if let Self(SmallIntType::Heap((r, s))) = self {
@ -363,5 +362,4 @@ mod conversion_tests {
(Sign::Plus, vec![5, 4, 8, 3, 2, 9, 3])
);
}
}