From ed675e586d5866fda84594371f83fb0c9bd3a0e8 Mon Sep 17 00:00:00 2001 From: Weikeng Chen Date: Sun, 6 Jun 2021 18:51:30 -0700 Subject: [PATCH] Release v0.3.0 (#78) --- CHANGELOG.md | 19 +++++++++++++++---- Cargo.toml | 26 +++++++++++++------------- 2 files changed, 28 insertions(+), 17 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index f9d41a1..05c79ae 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,12 +1,23 @@ -## v0.2.0 +# CHANGELOG + +## Pending ### Breaking changes ### Features -- #47 Automatically pad input to be of length 2^k, so constraint writers can have a public input of any size -- #51 Implement CanonicalSerialize for Marlin's proofs. -- #54 Implement CanonicalSerialize for Marlin's Index and Index Verification Key. ### Improvements ### Bug fixes + +## v0.3.0 + +- Change dependency to version `0.3.0` of other arkworks-rs crates. + +## v0.2.0 + +### Features + +- [\#47](https://github.com/arkworks-rs/marlin/pull/47) Automatically pad input to be of length 2^k, so constraint writers can have a public input of any size +- [\#51](https://github.com/arkworks-rs/marlin/pull/51) Implement CanonicalSerialize for Marlin's proofs. +- [\#54](https://github.com/arkworks-rs/marlin/pull/54) Implement CanonicalSerialize for Marlin's Index and Index Verification Key. diff --git a/Cargo.toml b/Cargo.toml index 3c4fe7c..652aca0 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "ark-marlin" -version = "0.2.1-alpha.0" +version = "0.3.0" authors = [ "Alessandro Chiesa ", "Mary Maller ", @@ -20,25 +20,25 @@ license = "MIT/Apache-2.0" edition = "2018" [dependencies] -ark-serialize = { version = "^0.2.0", default-features = false, features = [ "derive" ] } -ark-ff = { version = "^0.2.0", default-features = false } -ark-std = { version = "^0.2.0", default-features = false } -ark-poly = { version = "^0.2.0", default-features = false } -ark-relations = { version = "^0.2.0", default-features = false } -ark-poly-commit = { version = "^0.2.0", default-features = false } +ark-serialize = { version = "^0.3.0", default-features = false, features = [ "derive" ] } +ark-ff = { version = "^0.3.0", default-features = false } +ark-std = { version = "^0.3.0", default-features = false } +ark-poly = { version = "^0.3.0", default-features = false } +ark-relations = { version = "^0.3.0", default-features = false } +ark-poly-commit = { version = "^0.3.0", default-features = false } -rand_chacha = { version = "0.2.1", default-features = false } +rand_chacha = { version = "0.3.0", default-features = false } rayon = { version = "1", optional = true } digest = { version = "0.9" } derivative = { version = "2", features = ["use_core"] } [dev-dependencies] blake2 = { version = "0.9", default-features = false } -ark-bls12-381 = { version = "^0.2.0", default-features = false, features = [ "curve" ] } -ark-mnt4-298 = { version = "^0.2.0", default-features = false, features = ["r1cs", "curve"] } -ark-mnt6-298 = { version = "^0.2.0", default-features = false, features = ["r1cs"] } -ark-mnt4-753 = { version = "^0.2.0", default-features = false, features = ["r1cs", "curve"] } -ark-mnt6-753 = { version = "^0.2.0", default-features = false, features = ["r1cs"] } +ark-bls12-381 = { version = "^0.3.0", default-features = false, features = [ "curve" ] } +ark-mnt4-298 = { version = "^0.3.0", default-features = false, features = ["r1cs", "curve"] } +ark-mnt6-298 = { version = "^0.3.0", default-features = false, features = ["r1cs"] } +ark-mnt4-753 = { version = "^0.3.0", default-features = false, features = ["r1cs", "curve"] } +ark-mnt6-753 = { version = "^0.3.0", default-features = false, features = ["r1cs"] } [profile.release] opt-level = 3