1
0
Fork 0
mirror of synced 2025-09-23 04:08:33 +00:00

Merge pull request #1291 from Zokrates/deploy

Merge back 0.8.5
This commit is contained in:
Thibaut Schaeffer 2023-03-29 15:16:11 +02:00 committed by GitHub
commit 13d41b08a9
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
13 changed files with 24 additions and 17 deletions

View file

@ -4,6 +4,17 @@ All notable changes to this project will be documented in this file.
## [Unreleased]
https://github.com/Zokrates/ZoKrates/compare/latest...develop
## [0.8.5] - 2023-03-28
### Release
- https://github.com/Zokrates/ZoKrates/releases/tag/0.8.5 <!-- markdown-link-check-disable-line -->
### Changes
- Reduce memory usage and runtime by refactoring the reducer (ssa, propagation, unrolling and inlining) (#1283, @schaeff)
- Fix `radix-path` help message on `mpc init` subcommand (#1280, @dark64)
- Fix a potential crash in `zokrates-js` due to inefficient serialization of a setup keypair (#1277, @dark64)
- Show help when running `zokrates mpc` (#1275, @dark64)
## [0.8.4] - 2023-01-31
### Release

12
Cargo.lock generated
View file

@ -2906,7 +2906,7 @@ dependencies = [
[[package]]
name = "zokrates_analysis"
version = "0.1.0"
version = "0.1.1"
dependencies = [
"cfg-if 0.1.10",
"csv",
@ -2956,7 +2956,7 @@ dependencies = [
[[package]]
name = "zokrates_ast"
version = "0.1.4"
version = "0.1.5"
dependencies = [
"ark-bls12-377",
"byteorder",
@ -3005,7 +3005,7 @@ dependencies = [
[[package]]
name = "zokrates_cli"
version = "0.8.4"
version = "0.8.5"
dependencies = [
"assert_cli",
"blake2 0.8.1",
@ -3065,7 +3065,7 @@ dependencies = [
[[package]]
name = "zokrates_core"
version = "0.7.3"
version = "0.7.4"
dependencies = [
"cfg-if 0.1.10",
"csv",
@ -3148,7 +3148,7 @@ dependencies = [
[[package]]
name = "zokrates_interpreter"
version = "0.1.2"
version = "0.1.3"
dependencies = [
"ark-bls12-377",
"num",
@ -3164,7 +3164,7 @@ dependencies = [
[[package]]
name = "zokrates_js"
version = "1.1.5"
version = "1.1.6"
dependencies = [
"console_error_panic_hook",
"getrandom",

View file

@ -1 +0,0 @@
Show help when running `zokrates mpc`

View file

@ -1 +0,0 @@
Fix a potential crash in `zokrates-js` due to inefficient serialization of a setup keypair

View file

@ -1 +0,0 @@
Fix `radix-path` help message on `mpc init` subcommand

View file

@ -1 +0,0 @@
Reduce memory usage and runtime by refactoring the reducer (ssa, propagation, unrolling and inlining)

View file

@ -1,6 +1,6 @@
[package]
name = "zokrates_analysis"
version = "0.1.0"
version = "0.1.1"
edition = "2021"
[features]

View file

@ -1,6 +1,6 @@
[package]
name = "zokrates_ast"
version = "0.1.4"
version = "0.1.5"
edition = "2021"
[features]

View file

@ -1,6 +1,6 @@
[package]
name = "zokrates_cli"
version = "0.8.4"
version = "0.8.5"
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"

View file

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

View file

@ -1,6 +1,6 @@
[package]
name = "zokrates_interpreter"
version = "0.1.2"
version = "0.1.3"
edition = "2021"
[features]

View file

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

View file

@ -1,6 +1,6 @@
{
"name": "zokrates-js",
"version": "1.1.5",
"version": "1.1.6",
"module": "index.js",
"main": "index-node.js",
"description": "JavaScript bindings for ZoKrates",