Browse Source

Bump to 0.2 for the breaking feature change

Josh Stone 7 years ago
parent
commit
67f03391a1
3 changed files with 4 additions and 4 deletions
  1. 1 1
      Cargo.toml
  2. 2 2
      README.md
  3. 1 1
      src/lib.rs

+ 1 - 1
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]

+ 2 - 2
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
 ```
 

+ 1 - 1
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)]