diff --git a/Cargo.toml b/Cargo.toml index a320050..e37d337 100644 --- a/Cargo.toml +++ b/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.1.42" +version = "0.2.0-pre" readme = "README.md" [dependencies] diff --git a/README.md b/README.md index a701728..5f0c236 100644 --- a/README.md +++ b/README.md @@ -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 ``` diff --git a/src/lib.rs b/src/lib.rs index 80227b4..ef96e5c 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -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)]