Josh Stone 5 rokov pred
rodič
commit
6d62b6a228
2 zmenil súbory, kde vykonal 14 pridanie a 1 odobranie
  1. 1 1
      Cargo.toml
  2. 13 0
      RELEASES.md

+ 1 - 1
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.6"
+version = "0.2.7"
 readme = "README.md"
 build = "build.rs"
 exclude = ["/ci/*", "/.travis.yml", "/bors.toml"]

+ 13 - 0
RELEASES.md

@@ -1,3 +1,16 @@
+# Release 0.2.7 (2019-05-20)
+
+- [Documented when `CheckedShl` and `CheckedShr` return `None`][90].
+- [The new `Zero::set_zero` and `One::set_one`][104] will set values to their
+  identities in place, possibly optimized better than direct assignment.
+- [Documented general features and intentions of `PrimInt`][108].
+
+**Contributors**: @cuviper, @dvdhrm, @ignatenkobrain, @lcnr, @samueltardieu
+
+[90]: https://github.com/rust-num/num-traits/pull/90
+[104]: https://github.com/rust-num/num-traits/pull/104
+[108]: https://github.com/rust-num/num-traits/pull/108
+
 # Release 0.2.6 (2018-09-13)
 
 - [Documented that `pow(0, 0)` returns `1`][79].  Mathematically, this is not