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

Release v0.3.0 / Re-export num_traits::{One, Zero} from ark-std #34

Merged
merged 2 commits into from
Jun 6, 2021
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
12 changes: 12 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,10 +2,22 @@

### Breaking changes

### Features

### Improvements

### Bug fixes

## v0.3.0

### Breaking changes

- [\#32](https://github.com/arkworks-rs/utils/pull/32) Bump `rand` to 0.8 and remove the use of `rand_xorshift`.

### Features

- [\#34](https://github.com/arkworks-rs/utils/pull/34) Re-export `num_traits::{One, Zero}` from `ark-std`.

### Improvements

### Bug fixes
4 changes: 2 additions & 2 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "ark-std"
version = "0.2.1-alpha.0"
version = "0.3.0"
authors = [ "arkworks contributors" ]
description = "A library for no_std compatibility"
homepage = "https://arkworks.rs"
Expand All @@ -16,7 +16,7 @@ edition = "2018"
rand = { version = "0.8", default-features = false, features = ["std_rng"] }
rayon = { version = "1", optional = true }
colored = { version = "2", optional = true }

num-traits = { version = "0.2", default-features = false }

[features]
default = [ "std" ]
Expand Down
2 changes: 2 additions & 0 deletions src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -49,6 +49,8 @@ pub use rand_helper::*;

pub mod perf_trace;

pub use num_traits::{One, Zero};

/// Returns the ceiling of the base-2 logarithm of `x`.
///
/// ```
Expand Down