Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Release 0.8.6 #1294

Merged
merged 38 commits into from
Apr 14, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
38 commits
Select commit Hold shift + click to select a range
e12a4b4
wip
dark64 Jan 25, 2023
4988911
optimize zir solvers by indexing
dark64 Jan 26, 2023
6a16198
fix message
dark64 Jan 26, 2023
fdd441c
use cursor in zokrates_js
dark64 Jan 26, 2023
6f61a93
Merge branch 'develop' into optimize-zir-solver
dark64 Feb 21, 2023
1ef8649
refactor, fix tests
dark64 Feb 28, 2023
779bb2b
add changelog
dark64 Feb 28, 2023
3ce57d9
optimize evaluation of lincomb
dark64 Mar 3, 2023
e8abfb5
clippy
dark64 Mar 6, 2023
cfe43e6
revert is_assignee
dark64 Mar 6, 2023
0f31a1b
apply suggestions (part 1)
dark64 Mar 14, 2023
f84faaa
Sudoku example fix
Turupawn Mar 19, 2023
475744b
refactor
dark64 Mar 20, 2023
87f356a
add test
dark64 Mar 20, 2023
95bec7b
fix zir substitutor
dark64 Mar 21, 2023
2e551b3
Update sudoku_checker.zok
Turupawn Mar 21, 2023
e210f46
change into_bellman impl on field, use lincomb in bellman circuit con…
dark64 Mar 24, 2023
e0b0299
rename substitutor to canonicalizer, add tests
dark64 Mar 24, 2023
30c9d8b
Update sudoku_checker.zok
Turupawn Mar 24, 2023
48885d6
Update sudoku_checker.zok
Turupawn Mar 24, 2023
aea19eb
parallelize witness deserialization
dark64 Mar 27, 2023
f83c26c
fix test
dark64 Mar 28, 2023
bd873da
remove into_canonical call
dark64 Mar 28, 2023
3ffd642
Merge pull request #1268 from Zokrates/optimize-zir-solver
Schaeff Mar 28, 2023
13d41b0
Merge pull request #1291 from Zokrates/deploy
Schaeff Mar 29, 2023
3ba789e
use binary format for witness
dark64 Mar 29, 2023
33466b2
remove csv dependency
dark64 Mar 29, 2023
5257d30
Merge branch 'develop' into backend-opt
dark64 Mar 31, 2023
2e9c66a
fix integration test, update book
dark64 Apr 4, 2023
83835a7
add changelog
dark64 Apr 4, 2023
405b24d
change help message
dark64 Apr 4, 2023
2ba870a
Create 1287-Turupawn
Turupawn Apr 11, 2023
a895509
Merge pull request #1287 from Turupawn/patch-2
Schaeff Apr 11, 2023
36d0066
refactor
dark64 Apr 11, 2023
10ebd60
Merge pull request #1289 from Zokrates/backend-opt
Schaeff Apr 11, 2023
52e45a3
Add sourcemaps (#1285)
Schaeff Apr 13, 2023
8c08164
Build with stable rust (#1288)
Schaeff Apr 13, 2023
210285a
bump versions, generate changelog
Schaeff Apr 13, 2023
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ jobs:
build:
docker:
- image: zokrates/env:latest
resource_class: large
resource_class: xlarge
steps:
- checkout
- run:
Expand Down Expand Up @@ -68,7 +68,7 @@ jobs:
docker:
- image: zokrates/env:latest
- image: trufflesuite/ganache-cli:next
resource_class: large
resource_class: xlarge
steps:
- checkout
- run:
Expand Down
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,7 @@ verifier.sol
proof.json
universal_setup.dat
witness
witness.json

# ZoKrates source files at the root of the repository
/*.zok
Expand Down
12 changes: 12 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,18 @@ All notable changes to this project will be documented in this file.
## [Unreleased]
https://github.com/Zokrates/ZoKrates/compare/latest...develop

## [0.8.6] - 2023-04-13

### Release
- https://github.com/Zokrates/ZoKrates/releases/tag/0.8.6 <!-- markdown-link-check-disable-line -->

### Changes
- Make ZoKrates build on stable rust (#1288, @schaeff)
- Introduce sourcemaps, introduce `inspect` command to identify costly parts of the source (#1285, @schaeff)
- Change witness format to binary, optimize backend integration code to improve proving time (#1289, @dark64)
- Fixed precedence issue on Sudoku example. (#1287, @Turupawn)
- Reduce compiled program size by deduplicating assembly solvers (#1268, @dark64)

## [0.8.5] - 2023-03-28

### Release
Expand Down
Loading