Kaynağa Gözat

Merge #33

33: Release 0.2.0 r=cuviper a=cuviper
bors[bot] 7 yıl önce
ebeveyn
işleme
17cc9c1e75
4 değiştirilmiş dosya ile 23 ekleme ve 1 silme
  1. 1 1
      Cargo.toml
  2. 1 0
      README.md
  3. 17 0
      RELEASES.md
  4. 4 0
      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.2.0-pre"
+version = "0.2.0"
 readme = "README.md"
 
 [dependencies]

+ 1 - 0
README.md

@@ -2,6 +2,7 @@
 
 [![crate](https://img.shields.io/crates/v/num-traits.svg)](https://crates.io/crates/num-traits)
 [![documentation](https://docs.rs/num-traits/badge.svg)](https://docs.rs/num-traits)
+![minimum rustc 1.8](https://img.shields.io/badge/rustc-1.8+-red.svg)
 [![Travis status](https://travis-ci.org/rust-num/num-traits.svg?branch=master)](https://travis-ci.org/rust-num/num-traits)
 
 Numeric traits for generic mathematics in Rust.

+ 17 - 0
RELEASES.md

@@ -1,3 +1,20 @@
+# Release 0.2.0
+
+- **breaking change**: There is now a `std` feature, enabled by default, along
+  with the implication that building *without* this feature makes this a
+  `#[no_std]` crate.
+  - The `Float` and `Real` traits are only available when `std` is enabled.
+  - Otherwise, the API is unchanged, and num-traits 0.1.43 now re-exports its
+    items from num-traits 0.2 for compatibility (the [semver-trick]).
+
+**Contributors**: @cuviper, @termoshtt, @vks
+
+[semver-trick]: https://github.com/dtolnay/semver-trick
+
+# Release 0.1.43
+
+- All items are now re-exported from num-traits 0.2 for compatibility.
+
 # Release 0.1.42
 
 - [num-traits now has its own source repository][num-356] at [rust-num/num-traits][home].

+ 4 - 0
src/lib.rs

@@ -9,6 +9,10 @@
 // except according to those terms.
 
 //! Numeric traits for generic mathematics
+//!
+//! ## Compatibility
+//!
+//! The `num-traits` crate is tested for rustc 1.8 and greater.
 
 #![doc(html_root_url = "https://docs.rs/num-traits/0.2")]