Skip to content

Commit

Permalink
Merge pull request #70 from zkcrypto/release-0.10.0
Browse files Browse the repository at this point in the history
Release 0.10.0
  • Loading branch information
str4d committed Jun 4, 2021
2 parents cdca9f9 + ed9bcff commit c0c013e
Show file tree
Hide file tree
Showing 2 changed files with 15 additions and 12 deletions.
6 changes: 6 additions & 0 deletions CHANGELOG.md
Expand Up @@ -6,6 +6,12 @@ and this project adheres to Rust's notion of
[Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## [Unreleased]

## [0.10.0] - 2021-06-04
### Added
- `bellman::groth16::batch::Verifier`, for performing batched Groth16 proof
verification.

### Changed
- Bumped dependencies to `bitvec 0.22`, `ff 0.10`, `group 0.10`, `pairing 0.20`.
- MSRV is now 1.51.0.
Expand Down
21 changes: 9 additions & 12 deletions Cargo.toml
@@ -1,30 +1,33 @@
[package]
authors = ["Sean Bowe <ewillbefull@gmail.com>"]
authors = [
"Sean Bowe <ewillbefull@gmail.com>",
"Jack Grigg <thestr4d@gmail.com>",
]
description = "zk-SNARK library"
readme = "README.md"
homepage = "https://github.com/zkcrypto/bellman"
license = "MIT/Apache-2.0"
name = "bellman"
repository = "https://github.com/zkcrypto/bellman"
version = "0.9.0"
version = "0.10.0"
edition = "2018"

[dependencies]
bitvec = "0.22"
blake2s_simd = "0.5"
ff = "0.9"
ff = "0.10"
futures = "0.1"
futures-cpupool = { version = "0.1", optional = true }
group = "0.9"
group = "0.10"
num_cpus = { version = "1", optional = true }
crossbeam = { version = "0.7", optional = true }
pairing = { version = "0.19", optional = true }
pairing = { version = "0.20", optional = true }
rand_core = "0.6"
byteorder = "1"
subtle = "2.2.1"

[dev-dependencies]
bls12_381 = "0.4"
bls12_381 = "0.5"
criterion = "0.3"
hex-literal = "0.3"
rand = "0.8"
Expand All @@ -51,9 +54,3 @@ harness = false

[badges]
maintenance = { status = "actively-developed" }

[patch.crates-io]
bls12_381 = { git = "https://github.com/zkcrypto/bls12_381.git", branch = "main" }
ff = { git = "https://github.com/zkcrypto/ff.git", branch = "main" }
group = { git = "https://github.com/zkcrypto/group.git", branch = "main" }
pairing = { git = "https://github.com/zkcrypto/pairing.git", branch = "main" }

0 comments on commit c0c013e

Please sign in to comment.