Bump to 0.2 for the breaking feature change

This commit is contained in:
Josh Stone 2018-01-31 16:19:00 -08:00
parent 36b2514f4b
commit 67f03391a1
3 changed files with 4 additions and 4 deletions

View File

@ -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.1.42"
version = "0.2.0-pre"
readme = "README.md"
[dependencies]

View File

@ -12,7 +12,7 @@ Add this to your `Cargo.toml`:
```toml
[dependencies]
num-traits = "0.1"
num-traits = "0.2"
```
and this to your crate root:
@ -28,7 +28,7 @@ the default `std` feature. Use this in `Cargo.toml`:
```toml
[dependencies.num-traits]
version = "0.1"
version = "0.2"
default-features = false
```

View File

@ -10,7 +10,7 @@
//! Numeric traits for generic mathematics
#![doc(html_root_url = "https://docs.rs/num-traits/0.1")]
#![doc(html_root_url = "https://docs.rs/num-traits/0.2")]
#![deny(unconditional_recursion)]