From 0e57dba5d72bf79ea5ddd25ff10f9e4fa07a40f6 Mon Sep 17 00:00:00 2001 From: Josh Stone Date: Thu, 20 Jul 2023 15:43:14 -0700 Subject: [PATCH] Release 0.2.16 --- Cargo.toml | 2 +- RELEASES.md | 16 ++++++++++++++++ 2 files changed, 17 insertions(+), 1 deletion(-) diff --git a/Cargo.toml b/Cargo.toml index b8646ca5..9fdaf6f9 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.15" +version = "0.2.16" readme = "README.md" build = "build.rs" exclude = ["/bors.toml", "/ci/*", "/.github/*"] diff --git a/RELEASES.md b/RELEASES.md index cd33c044..d2340d5c 100644 --- a/RELEASES.md +++ b/RELEASES.md @@ -1,3 +1,19 @@ +# Release 0.2.16 (2023-07-20) + +- [Upgrade to 2018 edition, **MSRV 1.31**][240] +- [The new `ToBytes` and `FromBytes` traits][224] convert to and from byte + representations of a value, with little, big, and native-endian options. +- [The new `Float::is_subnormal` method checks for subnormal values][279], with + a non-zero magnitude that is less than the normal minimum positive value. +- Several other improvements to documentation and testing. + +**Contributors**: @ctrlcctrlv, @cuviper, @flier, @GuillaumeGomez, @kaidokert, +@rs017991, @vicsn + +[224]: https://github.com/rust-num/num-traits/pull/224 +[240]: https://github.com/rust-num/num-traits/pull/240 +[279]: https://github.com/rust-num/num-traits/pull/279 + # Release 0.2.15 (2022-05-02) - [The new `Euclid` trait calculates Euclidean division][195], where the