Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Re-export all items from num-traits 0.2 #31

Merged
merged 3 commits into from
Feb 7, 2018
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,7 @@ notifications:
branches:
only:
- master
- num-traits-0.1.x
- next
- staging
- trying
8 changes: 6 additions & 2 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,11 @@ 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.1.43"
readme = "README.md"

[dependencies]
[lib]
doctest = false # multiple rlib candidates for `num_traits` found

[dependencies.num-traits]
version = "0.2.0"
3 changes: 3 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,9 @@

Numeric traits for generic mathematics in Rust.

This version of the crate only exists to re-export compatible
items from `num-traits` 0.2. Please consider updating!

## Usage

Add this to your `Cargo.toml`:
Expand Down
17 changes: 17 additions & 0 deletions RELEASES.md
Original file line number Diff line number Diff line change
@@ -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].
Expand Down
99 changes: 0 additions & 99 deletions src/bounds.rs

This file was deleted.

Loading