-
Notifications
You must be signed in to change notification settings - Fork 87
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
9fa31a7
commit ed675e5
Showing
2 changed files
with
28 additions
and
17 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -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. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
[package] | ||
name = "ark-marlin" | ||
version = "0.2.1-alpha.0" | ||
version = "0.3.0" | ||
authors = [ | ||
"Alessandro Chiesa <[email protected]>", | ||
"Mary Maller <[email protected]>", | ||
|
@@ -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 | ||
|