From 7fbfc66b8195325eba5cd8aca6c78478ca2c230e Mon Sep 17 00:00:00 2001 From: CPerezz Date: Fri, 25 Sep 2020 17:00:35 +0200 Subject: [PATCH 1/5] Update plonk version --- Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Cargo.toml b/Cargo.toml index 9aee9f1..81f5cb0 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -11,7 +11,7 @@ kelvin = "0.19.0" nstack = "0.5" lazy_static = "1.3.0" hades252 = { git = "https://github.com/dusk-network/hades252", tag = "v0.7.0" } -dusk-plonk = "0.2.8" +dusk-plonk = {git = "https://github.com/dusk-network/plonk", branch ="circuit_trait_ref", features = ["trace-print"]} anyhow = "1.0" thiserror = "1.0" From f7aab0d9e3e5d756b3f9e80bb7039e1a1e7d7fe8 Mon Sep 17 00:00:00 2001 From: CPerezz Date: Fri, 25 Sep 2020 18:18:19 +0200 Subject: [PATCH 2/5] Use Hades new version --- Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Cargo.toml b/Cargo.toml index 81f5cb0..f307dec 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -10,7 +10,7 @@ edition = "2018" kelvin = "0.19.0" nstack = "0.5" lazy_static = "1.3.0" -hades252 = { git = "https://github.com/dusk-network/hades252", tag = "v0.7.0" } +hades252 = { git = "https://github.com/dusk-network/hades252", branch = "bump_plonk" } dusk-plonk = {git = "https://github.com/dusk-network/plonk", branch ="circuit_trait_ref", features = ["trace-print"]} anyhow = "1.0" thiserror = "1.0" From a99ecae76dbf4fb57ac1a8597cd051b28e95e886 Mon Sep 17 00:00:00 2001 From: CPerezz Date: Tue, 29 Sep 2020 10:47:14 +0200 Subject: [PATCH 3/5] Update dusk-plonk & Hades252 deps - Updated `dusk-plonk` dep to `v0.2.11` - Updated `Hades252` dep to `v0.8.0` --- Cargo.toml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index f307dec..7560256 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "poseidon252" -version = "0.7.0" +version = "0.8.0" authors = [ "zer0 ", "vlopes11 ", "CPerezz ", "Kristoffer Ström " ] @@ -10,8 +10,8 @@ edition = "2018" kelvin = "0.19.0" nstack = "0.5" lazy_static = "1.3.0" -hades252 = { git = "https://github.com/dusk-network/hades252", branch = "bump_plonk" } -dusk-plonk = {git = "https://github.com/dusk-network/plonk", branch ="circuit_trait_ref", features = ["trace-print"]} +hades252 = { git = "https://github.com/dusk-network/hades252", tag = "v0.8.0" } +dusk-plonk = {version = "o.2.11", features = ["trace-print"]} anyhow = "1.0" thiserror = "1.0" From 6604efdf5e040759c922a932ba4e394f475451ec Mon Sep 17 00:00:00 2001 From: CPerezz Date: Tue, 29 Sep 2020 10:50:54 +0200 Subject: [PATCH 4/5] Update CHANGELOG --- CHANGELOG.md | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index a5fd294..7e2fac4 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -7,13 +7,18 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] + +## [0.8.0] - 29-09-20 +### Changed +- Use `dusk-plonk` `v0.2.11` +- Use `hades252 0.8.0` + ## [0.7.0] - 23-09-20 ### Changed - Removed PI constraint from `merkle_opening_gadget` to implement `CircuitBuilder` trait. - Use `nstack 0.5.0` - ## [0.6.4] - 07-09-20 ### Added - `PoseidonCipher` from/to bytes. From 52858a66eee01e0237b4c75b2e61e32e0893230a Mon Sep 17 00:00:00 2001 From: CPerezz Date: Tue, 29 Sep 2020 10:54:56 +0200 Subject: [PATCH 5/5] Fix typo. --- Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Cargo.toml b/Cargo.toml index 7560256..29ebc2c 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -11,7 +11,7 @@ kelvin = "0.19.0" nstack = "0.5" lazy_static = "1.3.0" hades252 = { git = "https://github.com/dusk-network/hades252", tag = "v0.8.0" } -dusk-plonk = {version = "o.2.11", features = ["trace-print"]} +dusk-plonk = {version = "0.2.11", features = ["trace-print"]} anyhow = "1.0" thiserror = "1.0"