From aa3f1fc1ed6fc45f5d6b360401c454b6276fecdf Mon Sep 17 00:00:00 2001 From: schaeff Date: Fri, 21 Jan 2022 10:52:51 +0100 Subject: [PATCH] bump versions, generate changelog --- CHANGELOG.md | 11 +++++++++++ Cargo.lock | 4 ++-- changelogs/unreleased/1071-dark64 | 1 - changelogs/unreleased/1072-dark64 | 1 - changelogs/unreleased/1077-schaeff | 1 - changelogs/unreleased/1083-dark64 | 1 - zokrates_cli/Cargo.toml | 2 +- zokrates_core/Cargo.toml | 2 +- zokrates_js/Cargo.toml | 2 +- zokrates_js/package.json | 2 +- 10 files changed, 17 insertions(+), 10 deletions(-) delete mode 100644 changelogs/unreleased/1071-dark64 delete mode 100644 changelogs/unreleased/1072-dark64 delete mode 100644 changelogs/unreleased/1077-schaeff delete mode 100644 changelogs/unreleased/1083-dark64 diff --git a/CHANGELOG.md b/CHANGELOG.md index 243fe8e7..e5286583 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -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.7.11] - 2022-01-21 + +### Release +- https://github.com/Zokrates/ZoKrates/releases/tag/0.7.11 + +### Changes +- Improve Merkle tree examples (#1077, @schaeff) +- Support for the `groth16` scheme using the ark backend, support the usage of the `bls12_381` curve with the `gm17` and `marlin` scheme (#1071, @dark64) +- Fix out of memory issues in `zokrates-js` (#1083, @dark64) +- Improve `inspect` command to include information about constraint count and curve (#1072, @dark64) + ## [0.7.10] - 2021-12-16 ### Release diff --git a/Cargo.lock b/Cargo.lock index f364b2ae..700ac584 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -2524,7 +2524,7 @@ dependencies = [ [[package]] name = "zokrates_cli" -version = "0.7.9" +version = "0.7.11" dependencies = [ "assert_cli", "blake2 0.8.1", @@ -2558,7 +2558,7 @@ version = "0.1.0" [[package]] name = "zokrates_core" -version = "0.6.9" +version = "0.6.10" dependencies = [ "ark-bls12-377", "ark-bn254", diff --git a/changelogs/unreleased/1071-dark64 b/changelogs/unreleased/1071-dark64 deleted file mode 100644 index d875abc7..00000000 --- a/changelogs/unreleased/1071-dark64 +++ /dev/null @@ -1 +0,0 @@ -Support for the `groth16` scheme using the ark backend, support the usage of the `bls12_381` curve with the `gm17` and `marlin` scheme \ No newline at end of file diff --git a/changelogs/unreleased/1072-dark64 b/changelogs/unreleased/1072-dark64 deleted file mode 100644 index 60b21710..00000000 --- a/changelogs/unreleased/1072-dark64 +++ /dev/null @@ -1 +0,0 @@ -Improve `inspect` command to include information about constraint count and curve \ No newline at end of file diff --git a/changelogs/unreleased/1077-schaeff b/changelogs/unreleased/1077-schaeff deleted file mode 100644 index cc760bcf..00000000 --- a/changelogs/unreleased/1077-schaeff +++ /dev/null @@ -1 +0,0 @@ -Improve Merkle tree examples \ No newline at end of file diff --git a/changelogs/unreleased/1083-dark64 b/changelogs/unreleased/1083-dark64 deleted file mode 100644 index edbb93f3..00000000 --- a/changelogs/unreleased/1083-dark64 +++ /dev/null @@ -1 +0,0 @@ -Fix out of memory issues in `zokrates-js` \ No newline at end of file diff --git a/zokrates_cli/Cargo.toml b/zokrates_cli/Cargo.toml index d89e9477..c2b54874 100644 --- a/zokrates_cli/Cargo.toml +++ b/zokrates_cli/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "zokrates_cli" -version = "0.7.10" +version = "0.7.11" authors = ["Jacob Eberhardt ", "Dennis Kuhnert ", "Thibaut Schaeffer "] repository = "https://github.com/Zokrates/ZoKrates.git" edition = "2018" diff --git a/zokrates_core/Cargo.toml b/zokrates_core/Cargo.toml index 9a4de1e3..b5b77212 100644 --- a/zokrates_core/Cargo.toml +++ b/zokrates_core/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "zokrates_core" -version = "0.6.9" +version = "0.6.10" edition = "2018" authors = ["Jacob Eberhardt ", "Dennis Kuhnert "] repository = "https://github.com/Zokrates/ZoKrates" diff --git a/zokrates_js/Cargo.toml b/zokrates_js/Cargo.toml index 29dfaa64..df59d833 100644 --- a/zokrates_js/Cargo.toml +++ b/zokrates_js/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "zokrates_js" -version = "1.0.38" +version = "1.0.39" authors = ["Darko Macesic"] edition = "2018" diff --git a/zokrates_js/package.json b/zokrates_js/package.json index 09144241..f1379a68 100644 --- a/zokrates_js/package.json +++ b/zokrates_js/package.json @@ -2,7 +2,7 @@ "name": "zokrates-js", "main": "index.js", "author": "Darko Macesic ", - "version": "1.0.38", + "version": "1.0.39", "keywords": [ "zokrates", "wasm-bindgen",