Skip to content

Commit c751061

Browse files
committed
Add CHANGELOG entry
1 parent 33b72cb commit c751061

File tree

2 files changed

+5
-1
lines changed

2 files changed

+5
-1
lines changed

CHANGELOG.md

+4
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
## Pending
22

33
### Breaking changes
4+
- [\#348](https://github.com/arkworks-rs/snark/pull/334) Introduce a `Relation` trait, change the `SNARK` traits to use it, and break down `ConstraintSynthesizer` into three traits.
45

56
### Features
67
- [\#347](https://github.com/arkworks-rs/snark/pull/347) Add `into_inner` function for `ConstraintSystemRef<F>`.
@@ -10,6 +11,7 @@
1011
### Bug fixes
1112

1213

14+
1315
## v0.2.0
1416

1517
### Breaking changes
@@ -23,6 +25,8 @@
2325
### Bug fixes
2426
- [\#340](https://github.com/arkworks-rs/snark/pull/340) Compile with `panic='abort'` in release mode, for safety of the library across FFI boundaries.
2527

28+
29+
2630
## v0.1.0
2731

2832
This tag corresponds to the old `zexe` codebase.

snark/src/lib.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -97,7 +97,7 @@ pub trait UniversalSetupSNARK<R: NPRelation>: SNARK<R> {
9797
/// Specifies how to bound the size of public parameters required to
9898
/// generate the index proving and verification keys for a given
9999
/// circuit.
100-
///
100+
///
101101
/// For example, for SNARKs that rely on polynomial commitments, this would
102102
/// be the maximum degree of polynomials required to prove a given
103103
/// instance.

0 commit comments

Comments
 (0)