Skip to content

Commit 5726a68

Browse files
authored
Bump version to 0.7.0 (#84)
* Removed deprecated `incr()` and `decr()` methods * Added `next_multiple_of()`, `is_multiple_of()`, and `prev_multiple_of()` (#83) * Added modular multiplicative inverse method (#82) * Added greatest common divisor method (#81) * Added ceiling division method `div_ceil()` (#79) * Added integer square root method `isqrt()` (#63) * Optimized from/assign str for power of 2 bases (#78) * Aligned str parsing with primitive `from_str_radix()` behavior (#77)
1 parent 91e6918 commit 5726a68

File tree

3 files changed

+1
-264
lines changed

3 files changed

+1
-264
lines changed

arbi/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ license = "Apache-2.0 OR MIT"
1818
name = "arbi"
1919
readme = "README.md"
2020
repository = "https://github.com/OTheDev/arbi"
21-
version = "0.6.2"
21+
version = "0.7.0"
2222
rust-version = "1.65"
2323

2424
[dependencies]

arbi/src/increment_decrement.rs

Lines changed: 0 additions & 262 deletions
This file was deleted.

arbi/src/lib.rs

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,6 @@ mod from_double;
4040
mod from_integral;
4141
mod from_string;
4242
mod gcd;
43-
mod increment_decrement;
4443
mod invert;
4544
mod is_odd_is_even;
4645
mod is_signed;

0 commit comments

Comments
 (0)