Release 0.2.4

This commit is contained in:
Josh Stone 2018-05-11 16:01:25 -07:00
parent 51f6c57c4b
commit c00ae2046e
2 changed files with 11 additions and 1 deletions

View File

@ -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.3"
version = "0.2.4"
readme = "README.md"
build = "build.rs"

View File

@ -1,3 +1,13 @@
# Release 0.2.4
- [Support for 128-bit integers is now automatically detected and enabled.][69]
Setting the `i128` crate feature now causes the build script to panic if such
support is not detected.
**Contributors**: @cuviper
[69]: https://github.com/rust-num/num-traits/pull/69
# Release 0.2.3
- [The new `CheckedNeg` and `CheckedRem` traits][63] perform checked `Neg` and