Skip to content

Commit d9d2357

Browse files
bors[bot]CryZecuviper
authored
Merge #144
144: Update to libm 0.2.0 r=cuviper a=CryZe libm 0.2.0 was just released with a bunch of bugfixes. Since none of the public API of libm is exposed, this should be a non-breaking change. Unfortunately they removed the extension traits, so this implementation isn't quite as neat anymore as before. Co-authored-by: Christopher Serr <christopher.serr@gmail.com> Co-authored-by: Josh Stone <cuviper@gmail.com>
2 parents 8eb83e2 + 955e3f8 commit d9d2357

3 files changed

Lines changed: 317 additions & 75 deletions

File tree

Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ categories = ["algorithms", "science", "no-std"]
88
license = "MIT/Apache-2.0"
99
repository = "https://github.com/rust-num/num-traits"
1010
name = "num-traits"
11-
version = "0.2.9"
11+
version = "0.2.10"
1212
readme = "README.md"
1313
build = "build.rs"
1414
exclude = ["/ci/*", "/.travis.yml", "/bors.toml"]
@@ -17,7 +17,7 @@ exclude = ["/ci/*", "/.travis.yml", "/bors.toml"]
1717
features = ["std"]
1818

1919
[dependencies]
20-
libm = { version = "0.1.4", optional = true }
20+
libm = { version = "0.2.0", optional = true }
2121

2222
[features]
2323
default = ["std"]

RELEASES.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,11 @@
1+
# Release 0.2.10 (2019-11-22)
2+
3+
- [Updated the `libm` dependency to 0.2][144].
4+
5+
**Contributors**: @CryZe
6+
7+
[144]: https://github.com/rust-num/num-traits/pull/144
8+
19
# Release 0.2.9 (2019-11-12)
210

311
- [A new optional `libm` dependency][99] enables the `Float` and `Real` traits

0 commit comments

Comments
 (0)