diff --git a/CHANGELOG.md b/CHANGELOG.md index 0e3af43b..97746755 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -10,17 +10,21 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] -## [0.2.8] - 25-08-20 +## [0.2.9] - 11-09-20 ### Added +- Added `ProverKey` & `Verifierkey` to the public API as exported types. -- Add a `variable_base_scalar_mul` method using a variable base curve add gate. +### Changed +- Use `dusk-bls12_381 v0.1.4`. +- Use `dusk-jubjub v0.3.8`. -### Removed +## [0.2.8] - 25-08-20 +### Added +- Add a `variable_base_scalar_mul` method using a variable base curve add gate. ### Changed - - `ecc::scalar_mul` now named fixed_base_scalar_mul diff --git a/Cargo.toml b/Cargo.toml index 8c06fc04..a9c17fc0 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "dusk-plonk" -version = "0.2.8" +version = "0.2.9" authors = ["Kevaundray Wedderburn ", "Luke Pearson ", "CPerezz "] @@ -31,7 +31,7 @@ itertools = "0.8.2" rand_chacha = "0.2" rayon = "1.3.0" anyhow = "1.0.32" -dusk-jubjub = "0.3.7" +dusk-jubjub = "0.3.8" thiserror = "1.0" serde = "1.0"