diff --git a/CHANGELOG.md b/CHANGELOG.md index 6e9f889e..03ea2556 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -10,7 +10,17 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] -## [0.2.1] - 24-07-20 + +## [0.2.2] - 25-07-20 + +### Added +- Method to create constrained witness values. @CPerezz + +### Changed +- Visibility of the `Proof::verify()` fn to `pub(crate)`. @CPerezz +- Changed `dusk-jubjub` version to `v0.3.3` since `v0.3.2` was yanked. + +## [0.2.1] - 24-07-20 [yanked] ### Added - Method to create constrained witness values. @CPerezz diff --git a/Cargo.toml b/Cargo.toml index 590934cf..cc35484c 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "dusk-plonk" -version = "0.2.1" +version = "0.2.2" authors = ["Kevaundray Wedderburn ", "Luke Pearson ", "CPerezz "] @@ -8,7 +8,7 @@ readme = "README.md" documentation = "https://dusk-network.github.io/plonk" repository = "https://github.com/dusk-network/plonk" keywords = ["cryptography", "plonk", "zk-snarks", "zero-knowledge", "crypto"] -categories =["algorithms", "cryptography", "development tools"] +categories =["algorithms", "cryptography", "science"] description = "A pure-Rust implementation of the PLONK ZK-Proof algorithm" exclude = [ "**/.gitignore", @@ -31,7 +31,7 @@ itertools = "0.8.2" rand_chacha = "0.2" rayon = "1.3.0" failure = "0.1.7" -dusk-jubjub = "0.3.2" +dusk-jubjub = "0.3.3" [dev-dependencies] rand = "0.7.0"