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

bump versions, generate changelog

This commit is contained in:
schaeff 2023-03-28 10:45:53 +02:00
parent 7f698545f6
commit 16ef50fa9c
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] ## [Unreleased]
https://github.com/Zokrates/ZoKrates/compare/latest...develop 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 ## [0.8.4] - 2023-01-31
### Release ### Release

12
Cargo.lock generated
View file

@ -2906,7 +2906,7 @@ dependencies = [
[[package]] [[package]]
name = "zokrates_analysis" name = "zokrates_analysis"
version = "0.1.0" version = "0.1.1"
dependencies = [ dependencies = [
"cfg-if 0.1.10", "cfg-if 0.1.10",
"csv", "csv",
@ -2956,7 +2956,7 @@ dependencies = [
[[package]] [[package]]
name = "zokrates_ast" name = "zokrates_ast"
version = "0.1.4" version = "0.1.5"
dependencies = [ dependencies = [
"ark-bls12-377", "ark-bls12-377",
"cfg-if 0.1.10", "cfg-if 0.1.10",
@ -3004,7 +3004,7 @@ dependencies = [
[[package]] [[package]]
name = "zokrates_cli" name = "zokrates_cli"
version = "0.8.4" version = "0.8.5"
dependencies = [ dependencies = [
"assert_cli", "assert_cli",
"blake2 0.8.1", "blake2 0.8.1",
@ -3064,7 +3064,7 @@ dependencies = [
[[package]] [[package]]
name = "zokrates_core" name = "zokrates_core"
version = "0.7.3" version = "0.7.4"
dependencies = [ dependencies = [
"cfg-if 0.1.10", "cfg-if 0.1.10",
"csv", "csv",
@ -3147,7 +3147,7 @@ dependencies = [
[[package]] [[package]]
name = "zokrates_interpreter" name = "zokrates_interpreter"
version = "0.1.2" version = "0.1.3"
dependencies = [ dependencies = [
"ark-bls12-377", "ark-bls12-377",
"num", "num",
@ -3163,7 +3163,7 @@ dependencies = [
[[package]] [[package]]
name = "zokrates_js" name = "zokrates_js"
version = "1.1.5" version = "1.1.6"
dependencies = [ dependencies = [
"console_error_panic_hook", "console_error_panic_hook",
"getrandom", "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] [package]
name = "zokrates_analysis" name = "zokrates_analysis"
version = "0.1.0" version = "0.1.1"
edition = "2021" edition = "2021"
[features] [features]

View file

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

View file

@ -1,6 +1,6 @@
[package] [package]
name = "zokrates_cli" 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>"] 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.7.3" version = "0.7.4"
edition = "2021" edition = "2021"
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_interpreter" name = "zokrates_interpreter"
version = "0.1.2" version = "0.1.3"
edition = "2021" edition = "2021"
[features] [features]

View file

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

View file

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