update changelog, bump versions
This commit is contained in:
parent
264e4d3bc0
commit
044456418a
17 changed files with 24 additions and 17 deletions
18
CHANGELOG.md
18
CHANGELOG.md
|
@ -4,6 +4,24 @@ All notable changes to this project will be documented in this file.
|
|||
## [Unreleased]
|
||||
https://github.com/Zokrates/ZoKrates/compare/latest...develop
|
||||
|
||||
## [0.7.7] - 2021-10-04
|
||||
|
||||
### Release
|
||||
- https://github.com/Zokrates/ZoKrates/releases/tag/0.7.7 <!-- markdown-link-check-disable-line -->
|
||||
|
||||
### Changes
|
||||
- Reduce the deployment cost of the g16 and pghr13 verifiers (#1008, @m1cm1c)
|
||||
- Make operators table more clear in the book (#1017, @dark64)
|
||||
- Allow calls in constant definitions (#975, @schaeff)
|
||||
- Handle out of bound accesses gracefully (#1013, @schaeff)
|
||||
- Improve error message on unconstrained variable detection (#1015, @dark64)
|
||||
- Apply propagation in ZIR (#957, @dark64)
|
||||
- Fail on mistyped constants (#974, @schaeff)
|
||||
- Graceful error handling on unconstrained variable detection (#977, @dark64)
|
||||
- Fix incorrect propagation of spreads (#987, @schaeff)
|
||||
- Add range semantics to docs (#992, @dark64)
|
||||
- Fix invalid cast to `usize` which caused wrong values in 32-bit environments (#998, @dark64)
|
||||
|
||||
## [0.7.6] - 2021-08-16
|
||||
|
||||
### Release
|
||||
|
|
4
Cargo.lock
generated
4
Cargo.lock
generated
|
@ -2383,7 +2383,7 @@ dependencies = [
|
|||
|
||||
[[package]]
|
||||
name = "zokrates_cli"
|
||||
version = "0.7.6"
|
||||
version = "0.7.7"
|
||||
dependencies = [
|
||||
"assert_cli",
|
||||
"bincode",
|
||||
|
@ -2410,7 +2410,7 @@ version = "0.1.0"
|
|||
|
||||
[[package]]
|
||||
name = "zokrates_core"
|
||||
version = "0.6.6"
|
||||
version = "0.6.7"
|
||||
dependencies = [
|
||||
"ark-bls12-377",
|
||||
"ark-bn254",
|
||||
|
|
|
@ -1 +0,0 @@
|
|||
Reduce the deployment cost of the g16 and pghr13 verifiers
|
|
@ -1 +0,0 @@
|
|||
Handle out of bound accesses gracefully
|
|
@ -1 +0,0 @@
|
|||
Improve error message on unconstrained variable detection
|
|
@ -1 +0,0 @@
|
|||
Make operators table more clear in the book
|
|
@ -1 +0,0 @@
|
|||
Apply propagation in ZIR
|
|
@ -1 +0,0 @@
|
|||
Fail on mistyped constants
|
|
@ -1 +0,0 @@
|
|||
Allow calls in constant definitions
|
|
@ -1 +0,0 @@
|
|||
Graceful error handling on unconstrained variable detection
|
|
@ -1 +0,0 @@
|
|||
Fix incorrect propagation of spreads
|
|
@ -1 +0,0 @@
|
|||
Add range semantics to docs
|
|
@ -1 +0,0 @@
|
|||
Fix invalid cast to `usize` which caused wrong values in 32-bit environments
|
|
@ -1,6 +1,6 @@
|
|||
[package]
|
||||
name = "zokrates_cli"
|
||||
version = "0.7.6"
|
||||
version = "0.7.7"
|
||||
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_core"
|
||||
version = "0.6.6"
|
||||
version = "0.6.7"
|
||||
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.35"
|
||||
version = "1.0.36"
|
||||
authors = ["Darko Macesic"]
|
||||
edition = "2018"
|
||||
|
||||
|
|
|
@ -2,7 +2,7 @@
|
|||
"name": "zokrates-js",
|
||||
"main": "index.js",
|
||||
"author": "Darko Macesic <darem966@gmail.com>",
|
||||
"version": "1.0.35",
|
||||
"version": "1.0.36",
|
||||
"keywords": [
|
||||
"zokrates",
|
||||
"wasm-bindgen",
|
||||
|
|
Loading…
Reference in a new issue