From 6da6e052d1366bc9a0cf3119e4be1e365919fd4c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Carlos=20P=C3=A9rez?= <37264926+CPerezz@users.noreply.github.com> Date: Sat, 25 Jul 2020 13:02:26 +0200 Subject: [PATCH] Bump to v0.2.2 (#269) --- CHANGELOG.md | 12 +++++++++++- Cargo.toml | 6 +++--- 2 files changed, 14 insertions(+), 4 deletions(-) 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"