1
0
Fork 0
mirror of synced 2025-09-23 12:18:44 +00:00

update changelog, bump versions

This commit is contained in:
dark64 2021-10-04 17:45:29 +02:00
parent 264e4d3bc0
commit 044456418a
17 changed files with 24 additions and 17 deletions

View file

@ -4,6 +4,24 @@ All notable changes to this project will be documented in this file.
## [Unreleased] ## [Unreleased]
https://github.com/Zokrates/ZoKrates/compare/latest...develop 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 ## [0.7.6] - 2021-08-16
### Release ### Release

4
Cargo.lock generated
View file

@ -2383,7 +2383,7 @@ dependencies = [
[[package]] [[package]]
name = "zokrates_cli" name = "zokrates_cli"
version = "0.7.6" version = "0.7.7"
dependencies = [ dependencies = [
"assert_cli", "assert_cli",
"bincode", "bincode",
@ -2410,7 +2410,7 @@ version = "0.1.0"
[[package]] [[package]]
name = "zokrates_core" name = "zokrates_core"
version = "0.6.6" version = "0.6.7"
dependencies = [ dependencies = [
"ark-bls12-377", "ark-bls12-377",
"ark-bn254", "ark-bn254",

View file

@ -1 +0,0 @@
Reduce the deployment cost of the g16 and pghr13 verifiers

View file

@ -1 +0,0 @@
Handle out of bound accesses gracefully

View file

@ -1 +0,0 @@
Improve error message on unconstrained variable detection

View file

@ -1 +0,0 @@
Make operators table more clear in the book

View file

@ -1 +0,0 @@
Apply propagation in ZIR

View file

@ -1 +0,0 @@
Fail on mistyped constants

View file

@ -1 +0,0 @@
Allow calls in constant definitions

View file

@ -1 +0,0 @@
Graceful error handling on unconstrained variable detection

View file

@ -1 +0,0 @@
Fix incorrect propagation of spreads

View file

@ -1 +0,0 @@
Add range semantics to docs

View file

@ -1 +0,0 @@
Fix invalid cast to `usize` which caused wrong values in 32-bit environments

View file

@ -1,6 +1,6 @@
[package] [package]
name = "zokrates_cli" 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>"] 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" repository = "https://github.com/Zokrates/ZoKrates.git"
edition = "2018" edition = "2018"

View file

@ -1,6 +1,6 @@
[package] [package]
name = "zokrates_core" name = "zokrates_core"
version = "0.6.6" version = "0.6.7"
edition = "2018" edition = "2018"
authors = ["Jacob Eberhardt <jacob.eberhardt@tu-berlin.de>", "Dennis Kuhnert <mail@kyroy.com>"] authors = ["Jacob Eberhardt <jacob.eberhardt@tu-berlin.de>", "Dennis Kuhnert <mail@kyroy.com>"]
repository = "https://github.com/Zokrates/ZoKrates" repository = "https://github.com/Zokrates/ZoKrates"

View file

@ -1,6 +1,6 @@
[package] [package]
name = "zokrates_js" name = "zokrates_js"
version = "1.0.35" version = "1.0.36"
authors = ["Darko Macesic"] authors = ["Darko Macesic"]
edition = "2018" edition = "2018"

View file

@ -2,7 +2,7 @@
"name": "zokrates-js", "name": "zokrates-js",
"main": "index.js", "main": "index.js",
"author": "Darko Macesic <darem966@gmail.com>", "author": "Darko Macesic <darem966@gmail.com>",
"version": "1.0.35", "version": "1.0.36",
"keywords": [ "keywords": [
"zokrates", "zokrates",
"wasm-bindgen", "wasm-bindgen",