From 2c2cfe1bf3760ac48bfbf3bc9d09fdb63795dd0b Mon Sep 17 00:00:00 2001 From: Josh Stone Date: Tue, 21 May 2019 17:46:08 -0700 Subject: [PATCH] Release 0.2.8 --- Cargo.toml | 2 +- RELEASES.md | 8 ++++++++ 2 files changed, 9 insertions(+), 1 deletion(-) diff --git a/Cargo.toml b/Cargo.toml index bed4fd4..b673280 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -8,7 +8,7 @@ categories = ["algorithms", "science", "no-std"] license = "MIT/Apache-2.0" repository = "https://github.com/rust-num/num-traits" name = "num-traits" -version = "0.2.7" +version = "0.2.8" readme = "README.md" build = "build.rs" exclude = ["/ci/*", "/.travis.yml", "/bors.toml"] diff --git a/RELEASES.md b/RELEASES.md index f711d77..fe1bd17 100644 --- a/RELEASES.md +++ b/RELEASES.md @@ -1,3 +1,11 @@ +# Release 0.2.8 (2019-05-21) + +- [Fixed feature detection on `no_std` targets][116]. + +**Contributors**: @cuviper + +[116]: https://github.com/rust-num/num-traits/pull/116 + # Release 0.2.7 (2019-05-20) - [Documented when `CheckedShl` and `CheckedShr` return `None`][90].