Skip to content

Commit

Permalink
Merge pull request #66 from zkcrypto/release-0.11
Browse files Browse the repository at this point in the history
ff 0.11.0
  • Loading branch information
ebfull authored Sep 2, 2021
2 parents 9ba3f60 + 99f3851 commit e9eb586
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 5 deletions.
2 changes: 2 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,8 @@ and this library adheres to Rust's notion of
[Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## [Unreleased]

## [0.11.0] - 2021-09-02
### Added
- `subtle::ConstantTimeEq` bound on `ff::Field`
- `Copy + Send + Sync + 'static` bounds on `ff::PrimeField::Repr`
Expand Down
4 changes: 2 additions & 2 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "ff"
version = "0.10.1"
version = "0.11.0"
authors = [
"Sean Bowe <ewillbefull@gmail.com>",
"Jack Grigg <thestr4d@gmail.com>",
Expand All @@ -16,7 +16,7 @@ edition = "2018"
[dependencies]
bitvec = { version = "0.22", default-features = false, optional = true }
byteorder = { version = "1", default-features = false, optional = true }
ff_derive = { version = "0.10", path = "ff_derive", optional = true }
ff_derive = { version = "0.11", path = "ff_derive", optional = true }
rand_core = { version = "0.6", default-features = false }
subtle = { version = "2.2.1", default-features = false, features = ["i128"] }

Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ Add the `ff` crate to your `Cargo.toml`:

```toml
[dependencies]
ff = "0.10"
ff = "0.11"
```

The `ff` crate contains the `Field` and `PrimeField` traits.
Expand All @@ -32,7 +32,7 @@ First, enable the `derive` crate feature:

```toml
[dependencies]
ff = { version = "0.10", features = ["derive"] }
ff = { version = "0.11", features = ["derive"] }
```

And then use the macro like so:
Expand Down
2 changes: 1 addition & 1 deletion ff_derive/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "ff_derive"
version = "0.10.0"
version = "0.11.0"
authors = [
"Sean Bowe <ewillbefull@gmail.com>",
"Jack Grigg <thestr4d@gmail.com>",
Expand Down

0 comments on commit e9eb586

Please sign in to comment.