diff --git a/CHANGELOG.md b/CHANGELOG.md index aaf3640..91390e9 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -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` diff --git a/Cargo.toml b/Cargo.toml index 971fe6b..174d292 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "ff" -version = "0.10.1" +version = "0.11.0" authors = [ "Sean Bowe ", "Jack Grigg ", @@ -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"] } diff --git a/README.md b/README.md index eef3aff..a30fff1 100644 --- a/README.md +++ b/README.md @@ -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. @@ -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: diff --git a/ff_derive/Cargo.toml b/ff_derive/Cargo.toml index d27001d..c97fb5f 100644 --- a/ff_derive/Cargo.toml +++ b/ff_derive/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "ff_derive" -version = "0.10.0" +version = "0.11.0" authors = [ "Sean Bowe ", "Jack Grigg ",