bump versions, generate changelog
This commit is contained in:
parent
9ef41d7ddc
commit
b3273d1141
13 changed files with 22 additions and 15 deletions
12
CHANGELOG.md
12
CHANGELOG.md
|
@ -4,6 +4,18 @@ All notable changes to this project will be documented in this file.
|
|||
## [Unreleased]
|
||||
https://github.com/Zokrates/ZoKrates/compare/latest...develop
|
||||
|
||||
## [0.7.14] - 2022-05-30
|
||||
|
||||
### Release
|
||||
- https://github.com/Zokrates/ZoKrates/releases/tag/0.7.14 <!-- markdown-link-check-disable-line -->
|
||||
|
||||
### Changes
|
||||
- Add curve and scheme to the verification key and proof, detect these parameters on `verify`, `print-proof`, and `export-verifier` (#1152, @schaeff)
|
||||
- Fix `one_liner.sh` script not resolving latest github tag (#1146, @dark64)
|
||||
- Fix instructions to build from source (#1141, @schaeff)
|
||||
- Fix keccak padding issue, allow arbitrary input size (#1139, @dark64)
|
||||
- Fix tuple assignment when rhs is a conditional (#1138, @dark64)
|
||||
|
||||
## [0.7.13] - 2022-04-18
|
||||
|
||||
### Release
|
||||
|
|
8
Cargo.lock
generated
8
Cargo.lock
generated
|
@ -2834,7 +2834,7 @@ dependencies = [
|
|||
|
||||
[[package]]
|
||||
name = "zokrates_cli"
|
||||
version = "0.7.13"
|
||||
version = "0.7.14"
|
||||
dependencies = [
|
||||
"assert_cli",
|
||||
"blake2 0.8.1",
|
||||
|
@ -2869,11 +2869,11 @@ dependencies = [
|
|||
|
||||
[[package]]
|
||||
name = "zokrates_common"
|
||||
version = "0.1.0"
|
||||
version = "0.1.1"
|
||||
|
||||
[[package]]
|
||||
name = "zokrates_core"
|
||||
version = "0.6.12"
|
||||
version = "0.6.13"
|
||||
dependencies = [
|
||||
"ark-bls12-377",
|
||||
"ark-bn254",
|
||||
|
@ -3018,7 +3018,7 @@ dependencies = [
|
|||
|
||||
[[package]]
|
||||
name = "zokrates_stdlib"
|
||||
version = "0.2.8"
|
||||
version = "0.2.9"
|
||||
dependencies = [
|
||||
"fs_extra",
|
||||
"zokrates_test",
|
||||
|
|
|
@ -1 +0,0 @@
|
|||
Fix tuple assignment when rhs is a conditional
|
|
@ -1 +0,0 @@
|
|||
Fix keccak padding issue, allow arbitrary input size
|
|
@ -1 +0,0 @@
|
|||
Fix instructions to build from source
|
|
@ -1 +0,0 @@
|
|||
Fix `one_liner.sh` script not resolving latest github tag
|
|
@ -1 +0,0 @@
|
|||
Add curve and scheme to the verification key and proof, detect these parameters on `verify`, `print-proof`, and `export-verifier`
|
|
@ -1,6 +1,6 @@
|
|||
[package]
|
||||
name = "zokrates_cli"
|
||||
version = "0.7.13"
|
||||
version = "0.7.14"
|
||||
authors = ["Jacob Eberhardt <jacob.eberhardt@tu-berlin.de>", "Dennis Kuhnert <mail@kyroy.com>", "Thibaut Schaeffer <thibaut@schaeff.fr>"]
|
||||
repository = "https://github.com/Zokrates/ZoKrates.git"
|
||||
edition = "2018"
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
[package]
|
||||
name = "zokrates_common"
|
||||
version = "0.1.0"
|
||||
version = "0.1.1"
|
||||
authors = ["dark64 <darem966@gmail.com>"]
|
||||
edition = "2018"
|
||||
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
[package]
|
||||
name = "zokrates_core"
|
||||
version = "0.6.12"
|
||||
version = "0.6.13"
|
||||
edition = "2018"
|
||||
authors = ["Jacob Eberhardt <jacob.eberhardt@tu-berlin.de>", "Dennis Kuhnert <mail@kyroy.com>"]
|
||||
repository = "https://github.com/Zokrates/ZoKrates"
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
[package]
|
||||
name = "zokrates_js"
|
||||
version = "1.0.43"
|
||||
version = "1.0.44"
|
||||
authors = ["Darko Macesic"]
|
||||
edition = "2018"
|
||||
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"name": "zokrates-js",
|
||||
"version": "1.0.43",
|
||||
"version": "1.0.44",
|
||||
"module": "index.js",
|
||||
"main": "node/index.js",
|
||||
"description": "JavaScript bindings for ZoKrates",
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
[package]
|
||||
name = "zokrates_stdlib"
|
||||
version = "0.2.8"
|
||||
version = "0.2.9"
|
||||
authors = ["Stefan Deml <stefandeml@gmail.com>", "schaeff <thibaut@schaeff.fr>"]
|
||||
edition = "2018"
|
||||
|
||||
|
|
Loading…
Reference in a new issue