From aeccb66b0e7b7af77800f4cc476e12e4d7bd7fb2 Mon Sep 17 00:00:00 2001 From: Josh Stone Date: Tue, 6 Feb 2018 17:01:31 -0800 Subject: [PATCH] Add release notes for 0.2.0 --- RELEASES.md | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) diff --git a/RELEASES.md b/RELEASES.md index b82bce6..d2bc774 100644 --- a/RELEASES.md +++ b/RELEASES.md @@ -1,3 +1,20 @@ +# Release 0.2.0 + +- **breaking change**: There is now a `std` feature, enabled by default, along + with the implication that building *without* this feature makes this a + `#[no_std]` crate. + - The `Float` and `Real` traits are only available when `std` is enabled. + - Otherwise, the API is unchanged, and num-traits 0.1.43 now re-exports its + items from num-traits 0.2 for compatibility (the [semver-trick]). + +**Contributors**: @cuviper, @termoshtt, @vks + +[semver-trick]: https://github.com/dtolnay/semver-trick + +# Release 0.1.43 + +- All items are now re-exported from num-traits 0.2 for compatibility. + # Release 0.1.42 - [num-traits now has its own source repository][num-356] at [rust-num/num-traits][home].