From d1bcfdf2b386ffd803e4b59d0f01c886e42c1a9a Mon Sep 17 00:00:00 2001 From: Igor Aleksanov Date: Fri, 2 Aug 2024 10:42:19 +0400 Subject: [PATCH] Prepare 0.7.0 release (#58) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit # What ❔ Sets the bellman and blake2s_const versions to 0.7.0 (already published on crates.io) ## Why ❔ Aligning versions with crates.io ## Checklist - [ ] PR title corresponds to the body of PR (we generate changelog entries from PRs). - [ ] Tests for the changes have been added / updated. - [ ] Documentation comments have been added / updated. - [ ] Code has been formatted via `zk fmt` and `zk lint`. --- Cargo.toml | 10 +++++----- src/plonk/blake2_const/blake2s/Cargo.toml | 2 +- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index b6255914c..2e5603fae 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -6,7 +6,7 @@ homepage = "https://github.com/matter-labs/bellman" license = "MIT/Apache-2.0" name = "bellman_ce" repository = "https://github.com/matter-labs/bellman" -version = "0.3.2" +version = "0.7.0" edition = "2018" [lib] @@ -22,7 +22,7 @@ byteorder = "1" num_cpus = "1" serde = {version = "1", features = ["derive", "rc"]} -pairing = {package = "pairing_ce", version = "0.28.*" } +pairing = {package = "pairing_ce", version = "=0.28.6" } # pairing = {package = "pairing_ce", path = "../pairing"} futures = {package = "futures", version = "0.3", default_features = false, features = ["executor"]} @@ -33,8 +33,8 @@ tiny-keccak = {version = "1.5", optional = true} blake2-rfc = {version = "0.2.18", optional = true} blake2s_simd = {version = "0.5"} lazy_static = {version = "1", optional = true} -blake2s_const = {version = "0.6", optional = true, path = "./src/plonk/blake2_const/blake2s/"} -hex = "*" +blake2s_const = {version = "=0.7", optional = true, path = "./src/plonk/blake2_const/blake2s/"} +hex = "0.4.3" [features] default = ["multicore", "plonk"] @@ -53,4 +53,4 @@ allocator = [] debug = true [profile.bench] -debug = true \ No newline at end of file +debug = true diff --git a/src/plonk/blake2_const/blake2s/Cargo.toml b/src/plonk/blake2_const/blake2s/Cargo.toml index c566b79b7..34a9f42a7 100644 --- a/src/plonk/blake2_const/blake2s/Cargo.toml +++ b/src/plonk/blake2_const/blake2s/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "blake2s_const" -version = "0.6.0" +version = "0.7.0" authors = ["Jack O'Connor"] description = "a pure Rust BLAKE2s implementation with dynamic SIMD" license = "MIT"