From c7f506e65cec8971089171eef195fa635d61a284 Mon Sep 17 00:00:00 2001 From: Josh Stone Date: Wed, 7 Feb 2024 17:37:47 -0800 Subject: [PATCH] Release 0.1.46 --- Cargo.toml | 2 +- RELEASES.md | 13 +++++++++++++ 2 files changed, 14 insertions(+), 1 deletion(-) diff --git a/Cargo.toml b/Cargo.toml index 8edecf4..8c5fc92 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -8,7 +8,7 @@ categories = ["algorithms", "science", "no-std"] license = "MIT OR Apache-2.0" repository = "https://github.com/rust-num/num-integer" name = "num-integer" -version = "0.1.45" +version = "0.1.46" readme = "README.md" exclude = ["/ci/*", "/.github/*"] edition = "2018" diff --git a/RELEASES.md b/RELEASES.md index 05c649b..9aeca2d 100644 --- a/RELEASES.md +++ b/RELEASES.md @@ -1,3 +1,16 @@ +# Release 0.1.46 (2024-02-07) + +- [Upgrade to 2018 edition, **MSRV 1.31**][51] +- [The `Integer::divides` method is now properly deprecated][42], + rather than just documented so. +- [The new `Integer::dec` and `inc` methods change the value by one.][53] + +**Contributors**: @aobatact, @cuviper, @hkBst, @MiguelX413 + +[42]: https://github.com/rust-num/num-integer/pull/42 +[51]: https://github.com/rust-num/num-integer/pull/51 +[53]: https://github.com/rust-num/num-integer/pull/53 + # Release 0.1.45 (2022-04-29) - [`Integer::next_multiple_of` and `prev_multiple_of` no longer overflow -1][45].