From 5c2cc9bf5f42d8298ea2584cbb59549663f2713d Mon Sep 17 00:00:00 2001 From: Josh Stone Date: Wed, 7 Feb 2024 16:52:30 -0800 Subject: [PATCH] Release 0.2.18 --- Cargo.toml | 2 +- RELEASES.md | 14 ++++++++++++++ 2 files changed, 15 insertions(+), 1 deletion(-) diff --git a/Cargo.toml b/Cargo.toml index eb02c182..4f494e01 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-traits" name = "num-traits" -version = "0.2.17" +version = "0.2.18" readme = "README.md" build = "build.rs" exclude = ["/ci/*", "/.github/*"] diff --git a/RELEASES.md b/RELEASES.md index f0c0cf80..56517f6f 100644 --- a/RELEASES.md +++ b/RELEASES.md @@ -1,3 +1,17 @@ +# Release 0.2.18 (2024-02-07) + +- [The new `Euclid::div_rem_euclid` and `CheckedEuclid::checked_div_rem_euclid` methods][291] + compute and return the quotient and remainder at the same time. +- [The new `TotalOrder` trait implements the IEEE 754 `totalOrder` predicate.][295] +- [The new `ConstZero` and `ConstOne` traits offered associated constants][303], + extending the non-const `Zero` and `One` traits for types that have constant values. + +**Contributors**: @andrewjradcliffe, @cuviper, @tarcieri, @tdelabro, @waywardmonkeys + +[291]: https://github.com/rust-num/num-traits/pull/291 +[295]: https://github.com/rust-num/num-traits/pull/295 +[303]: https://github.com/rust-num/num-traits/pull/303 + # Release 0.2.17 (2023-10-07) - [Fix a doc warning about custom classes with newer rustdoc.][286]