diff --git a/CHANGELOG.md b/CHANGELOG.md index 1e3ae0c..aec3f6d 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -7,6 +7,10 @@ and this library adheres to Rust's notion of ## [Unreleased] +## [0.13.0] - 2022-12-06 +### Changed +- Bumped `ff` to `0.13` + ## [0.12.1] - 2022-10-13 ### Added - `group::{WnafBase, WnafScalar}` structs for caching precomputations of both diff --git a/Cargo.toml b/Cargo.toml index ebbd252..60c0854 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "group" -version = "0.12.1" +version = "0.13.0" authors = [ "Sean Bowe ", "Jack Grigg ", @@ -15,7 +15,7 @@ repository = "https://github.com/zkcrypto/group" edition = "2021" [dependencies] -ff = { version = "0.12", default-features = false } +ff = { version = "0.13", default-features = false } rand = { version = "0.8", optional = true, default-features = false } rand_core = { version = "0.6", default-features = false } rand_xorshift = { version = "0.3", optional = true }