From cae69726dea0c4750c8cff880704b5840ba36e87 Mon Sep 17 00:00:00 2001 From: Victor Lopes Date: Wed, 27 Jan 2021 17:31:10 +0100 Subject: [PATCH] Upgrade canonical to v0.5 ( #371 ) (#372) * Upgrade canonical to v0.5 ( #371 ) * Changelog for v0.5 --- CHANGELOG.md | 6 ++++++ Cargo.toml | 8 ++++---- 2 files changed, 10 insertions(+), 4 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 68dd1a43..a6fdb6fc 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -7,6 +7,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [0.5.0] - 27-01-21 +### Changed +- Upgrade canonical to v0.5 (#371) +- Upgrade dusk-bls12_381 to v0.6 +- Upgrade dusk-jubjub to v0.8 + ## [0.4.0] - 26-01-21 ### Fixed - Heavy data structures from unchecked [#332](https://github.com/dusk-network/plonk/issues/332) diff --git a/Cargo.toml b/Cargo.toml index b9b66aa6..ad1ab4ab 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "dusk-plonk" -version = "0.4.0" +version = "0.5.0" authors = ["Kevaundray Wedderburn ", "Luke Pearson ", "CPerezz "] @@ -26,8 +26,8 @@ rand = "0.7" rand_core = {version="0.5", default-features=false} dusk-bytes = "0.1" # Built by default with "std", "alloc", "pairing", "groups" and "endo" features. -dusk-bls12_381 = "0.5" -dusk-jubjub = "0.7" +dusk-bls12_381 = "0.6" +dusk-jubjub = "0.8" itertools = "0.9.0" rand_chacha = "0.2" rayon = "1.3.0" @@ -35,7 +35,7 @@ anyhow = "1.0.32" thiserror = "1.0" serde = "1.0" # Dusk related deps for WASMI serde -canonical = {version = "0.4", optional = true} +canonical = {version = "0.5", optional = true} [dev-dependencies] tempdir = "0.3"