Преглед на файлове

Merge #53

53: Release 0.2.2 r=cuviper a=cuviper
bors[bot] преди 7 години
родител
ревизия
bb67a3d03a
променени са 2 файла, в които са добавени 13 реда и са изтрити 1 реда
  1. 1 1
      Cargo.toml
  2. 12 0
      RELEASES.md

+ 1 - 1
Cargo.toml

@@ -8,7 +8,7 @@ categories = [ "algorithms", "science" ]
 license = "MIT/Apache-2.0"
 repository = "https://github.com/rust-num/num-traits"
 name = "num-traits"
-version = "0.2.1"
+version = "0.2.2"
 readme = "README.md"
 
 [dependencies]

+ 12 - 0
RELEASES.md

@@ -1,3 +1,15 @@
+# Release 0.2.2
+
+- [Casting from floating point to integers now returns `None` on overflow][52],
+  avoiding [rustc's undefined behavior][rust-10184]. This applies to the `cast`
+  function and the traits `NumCast`, `FromPrimitive`, and `ToPrimitive`.
+
+**Contributors**: @apopiak, @cuviper, @dbarella
+
+[52]: https://github.com/rust-num/num-traits/pull/52
+[rust-10184]: https://github.com/rust-lang/rust/issues/10184
+
+
 # Release 0.2.1
 
 - [The new `FloatCore` trait][32] offers a subset of `Float` for `#![no_std]` use.