From a01ddd8af9a6e2b7544e4051a193db1645455fef Mon Sep 17 00:00:00 2001 From: Jack Grigg Date: Wed, 1 Sep 2021 23:34:28 +0100 Subject: [PATCH 1/2] ff 0.11.0 --- CHANGELOG.md | 2 ++ Cargo.toml | 4 ++-- README.md | 4 ++-- ff_derive/Cargo.toml | 2 +- 4 files changed, 7 insertions(+), 5 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index aaf3640..399b998 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-01 ### 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 ", From 99f3851a68fc368e78eef418446ea2ac9740234a Mon Sep 17 00:00:00 2001 From: str4d Date: Thu, 2 Sep 2021 13:42:58 +0100 Subject: [PATCH 2/2] Update release date --- CHANGELOG.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 399b998..91390e9 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -7,7 +7,7 @@ and this library adheres to Rust's notion of ## [Unreleased] -## [0.11.0] - 2021-09-01 +## [0.11.0] - 2021-09-02 ### Added - `subtle::ConstantTimeEq` bound on `ff::Field` - `Copy + Send + Sync + 'static` bounds on `ff::PrimeField::Repr`